-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
58 lines (57 loc) · 1.67 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
52
53
54
55
56
57
58
{
"name": "silvercommerce/shoppingcart",
"description": "Module for managing estimates via a frontend controller",
"type": "silverstripe-vendormodule",
"homepage": "http://github.com/silvercommerce/shoppingcart",
"keywords": [
"silverstripe",
"silvercommerce",
"commerce",
"ecommerce",
"shoppingcart"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Morven Lewis-Everley",
"email": "morven@ilateral.co.uk"
},
{
"name": "Mark Anderson",
"email": "mark@ilateral.co.uk"
}
],
"support": {
"issues": "http://github.com/silvercommerce/shoppingcart/issues"
},
"require": {
"silverstripe/framework": "~4.0",
"silvercommerce/settings": "~1.0",
"silvercommerce/orders-admin": "^1.5",
"silvercommerce/discounts": "~2.0",
"silvercommerce/postage": "~1.0"
},
"require-dev": {
"silvercommerce/catalogue-admin": "^1.0",
"silvercommerce/tax-admin": "^1.0",
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
},
"extra": {
"expose": [
"client/dist"
]
},
"autoload": {
"psr-4": {
"SilverCommerce\\ShoppingCart\\": "src/",
"SilverCommerce\\ShoppingCart\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "vendor/bin/phpcs src/ tests/",
"lint-clean": "vendor/bin/phpcbf src/ tests/"
},
"minimum-stability": "dev",
"prefer-stable": true
}