forked from silvercommerce/postage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.42 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
{
"name": "silvercommerce/postage",
"description": "Add postage/shipping management to a SilverCommerce install",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/silvercommerce/postage",
"keywords": [
"silverstripe",
"postage",
"shipping"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Morven Lewis-Everley",
"email": "morven@ilateral.co.uk"
}
],
"support": {
"issues": "https://github.com/silvercommerce/postage/issues"
},
"require": {
"silverstripe/framework": "^4.0",
"silverstripe/siteconfig": "^4.0",
"silverstripe/admin": "^1.0",
"symbiote/silverstripe-gridfieldextensions": "^3.0",
"silvercommerce/tax-admin": "^1.0",
"silvercommerce/geozones": "^1.0",
"silvercommerce/settings": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"SilverCommerce\\Postage\\": "src/",
"SilverCommerce\\Postage\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "vendor/bin/phpcs src/ tests/",
"lint-clean": "vendor/bin/phpcbf src/ tests/"
},
"suggest": {
"silverstripe/cms": "Add full content management support to your site"
},
"minimum-stability": "dev",
"prefer-stable": true
}