-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 971 Bytes
/
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
{
"name": "silvercommerce/grouped-products",
"description": "Allows grouping of multiple products under a single 'Product Group' that will render products as a custom list",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/silvercommerce/grouped-products",
"keywords": [
"silverstripe",
"commerce",
"ecommerce",
"product",
"groups"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "ilateral",
"email": "info@ilateral.co.uk"
}
],
"support": {
"issues": "https://github.com/silvercommerce/grouped-products/issues"
},
"require": {
"silverstripe/framework": "^4.2",
"silvercommerce/catalogue-admin": "^1.3"
},
"extra": {
"expose": [
"client/dist"
]
},
"autoload": {
"psr-4": {
"SilverCommerce\\GroupedProducts\\": "src/"
}
}
}