-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 1.1 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": "silvercommerce/bulk-pricing",
"description": "Add bulk pricing management to a SilverCommerce install",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/silvercommerce/bulk-pricing",
"keywords": [
"silverstripe",
"prices",
"bulk"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Morven Lewis-Everley",
"email": "morven@ilateral.co.uk"
}
],
"support": {
"issues": "https://github.com/silvercommerce/bulk-pricing/issues"
},
"require": {
"silvercommerce/orders-admin": "~1.0",
"silvercommerce/catalogue-admin": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"SilverCommerce\\Postage\\": "src/",
"SilverCommerce\\Postage\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "phpcs -s src/ tests/",
"lint-clean": "phpcbf src/ tests/"
},
"suggest": {
"silverstripe/cms": "Add full content management support to your site"
}
}