forked from silvershop/silvershop-discounts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 961 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
{
"name" : "silvershop/discounts",
"description" : "Adds Discount and Coupon support for SilverShop.",
"license" : "BSD-3-Clause",
"type" : "silverstripe-vendormodule",
"keywords" : ["silverstripe","shop","shopping cart","ecommerce","discount","coupons"],
"require" : {
"silvershop/core": "^3"
},
"authors": [{
"name": "SilverShop Contributors",
"homepage": "https://github.com/silvershop/silvershop-stock/graphs/contributors"
}],
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
},
"prefer-stable": false,
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"expose": [
"javascript",
"images"
]
},
"autoload": {
"psr-4": {
"SilverShop\\Discounts\\": "src/",
"SilverShop\\Discounts\\Tests\\": "tests/unit/"
}
}
}