forked from silvercommerce/orders-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
80 lines (80 loc) · 2.55 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "silvercommerce/orders-admin",
"description": "Silverstripe module for creating and managing invoice and estimate objects in the admin",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/silvercommerce/orders-admin",
"keywords": [
"silverstripe",
"orders",
"invoices",
"estimates"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Morven Lewis-Everley",
"email": "[email protected]"
},
{
"name": "Mark Anderson",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/silvercommerce/orders-admin/issues"
},
"require": {
"php": ">=7.1.0",
"silverstripe/framework": "~4.0",
"silverstripe/siteconfig": "~4.0",
"silverstripe/admin": "~1.0",
"silverstripe/versioned": "~1.0",
"colymba/gridfield-bulk-editing-tools": "^3.1",
"symbiote/silverstripe-gridfieldextensions": "^3.6",
"dompdf/dompdf": "^0.8",
"i-lateral/silverstripe-modeladminplus": "~1.1",
"silvercommerce/settings": "^1.0",
"silvercommerce/tax-admin": "^1.4",
"silvercommerce/contact-admin": "^1.0",
"silvercommerce/versionhistoryfield": "^1.0",
"silvershop/silverstripe-hasonefield": "^3.0",
"lekoala/silverstripe-uuid": "^1.1"
},
"require-dev": {
"silvercommerce/catalogue-admin": "^1.3",
"silvercommerce/tax-admin": "1.*@dev",
"silvercommerce/stock": "1.*@dev",
"i-lateral/silverstripe-gridfield-addons":"2.*@dev",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.0"
},
"extra": {
"expose": [
"client/dist"
]
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true,
"php-http/discovery": true,
"silverstripe/recipe-plugin": true
}
},
"autoload": {
"psr-4": {
"SilverCommerce\\OrdersAdmin\\": "src/",
"SilverCommerce\\OrdersAdmin\\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",
"i-lateral/silverstripe-users": "Add user account management, login and registration"
},
"minimum-stability": "dev",
"prefer-stable": true
}