-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
32 lines (32 loc) · 855 Bytes
/
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
{
"name": "antonythorpe/silvershop-unleashed",
"description": "Silvershop submodule that integrates with Unleashed Software Inventory Management",
"type": "silverstripe-vendormodule",
"keywords": ["Silverstripe", "Silvershop", "eCommerce", "Unleashed Software", "inventory management"],
"require": {
"php": "^8.1",
"antonythorpe/consumer": "^4.0.1",
"silvershop/core": "dev-main",
"silverstripe/cms": "^5"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"silvershop/shipping": "dev-main"
},
"autoload": {
"psr-4": {
"AntonyThorpe\\SilverShopUnleashed\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AntonyThorpe\\SilverShopUnleashed\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "5.*-dev"
}
},
"license": "MIT"
}