-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
49 lines (49 loc) · 1.44 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": "Dean Forest Tech",
"homepage": "https://dean-forest-tech.uk"
}
],
"support": {
"issues": "https://github.com/silvercommerce/postage/issues"
},
"require": {
"silverstripe/framework": "^4 || ^5",
"silverstripe/siteconfig": "^4 || ^5",
"silverstripe/admin": "^1 || ^2",
"symbiote/silverstripe-gridfieldextensions": "^3 || ^4",
"silvercommerce/tax-admin": "^1",
"silvercommerce/geozones": "^1 || ^2",
"silvercommerce/settings": "^1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"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
}