forked from silvercommerce/catalogue-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.58 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
{
"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": "Morven Lewis-Everley",
"email": "[email protected]"
},
{
"name": "Mark Anderson",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/silvercommerce/catalogue-admin/issues"
},
"require": {
"silverstripe/framework": "~4.0",
"silverstripe/siteconfig": "~4.0",
"silverstripe/asset-admin": "~1.0",
"i-lateral/silverstripe-modeladminplus": "~1.0",
"silvercommerce/tax-admin": "~1.0",
"silvercommerce/settings": "~1.0",
"bummzack/sortablefile": "~2.0"
},
"extra": {
"expose": [
"client/dist"
]
},
"autoload": {
"psr-4": {
"SilverCommerce\\CatalogueAdmin\\": "src/"
}
},
"suggest": {
"silverstripe/cms": "Add full content management support to your site",
"i-lateral/silverstripe-users": "Add user account management, login and registration"
}
}