forked from silvershop/silvershop-discounts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.25 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
{
"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": "^4"
},
"authors": [{
"name": "SilverShop Contributors",
"homepage": "https://github.com/silvershop/silvershop-stock/graphs/contributors"
}],
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.0"
},
"scripts": {
"lint": "phpcs src/ tests/ --extensions=php",
"syntax-check": "find src/ tests/ -type f -name '*.php' -exec php -l {} \\;",
"lint-clean": "phpcbf src/ tests/ --extensions=php",
"remove-uses": "php-cs-fixer fix src/ --rules=no_unused_imports"
},
"prefer-stable": false,
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-main": "3.x-dev"
},
"expose": [
"javascript",
"images"
]
},
"autoload": {
"psr-4": {
"SilverShop\\Discounts\\": "src/",
"SilverShop\\Discounts\\Tests\\": "tests/"
}
}
}