-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
54 lines (54 loc) · 1.67 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "silvercommerce/catalogue-admin",
"description": "Silverstripe module allowing creation of a custom product catalog with products and categories that can be created via the admin and accessed via their own URL's (like more conventional page objects)",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/silvercommerce/catalogue-admin",
"keywords": [
"silverstripe",
"commerce",
"ecommerce",
"product",
"category",
"catalogue"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Dean Forest Tech",
"homepage": "https://dean-forest-tech.uk"
}
],
"support": {
"issues": "https://github.com/silvercommerce/catalogue-admin/issues"
},
"require": {
"silverstripe/framework": "^4 || ^5",
"silverstripe/siteconfig": "^4 || ^5",
"silverstripe/asset-admin": "^1 || ^2",
"dft/silverstripe-modeladminplus": "^2",
"silvercommerce/tax-admin": "^1.4",
"silvercommerce/settings": "^1",
"bummzack/sortablefile": "^2",
"silverstripe/tagfield": "^2.11 || ^3"
},
"extra": {
"expose": [
"client/dist"
]
},
"autoload": {
"psr-4": {
"SilverCommerce\\CatalogueAdmin\\": "src/"
}
},
"suggest": {
"silverstripe/cms": "Add full content management support to your site",
"dft/silverstripe-users": "Add user account management, login and registration"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true
}
}
}