forked from silvershop/silvershop-stock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 955 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
33
34
{
"name": "silvershop/stock",
"description": "Adds stock management to SilverShop.",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe", "silvershop", "ecommerce"],
"license": "BSD-3-Clause",
"authors": [ {
"name": "SilverShop Contributors",
"homepage": "https://github.com/silvershop/silvershop-stock/graphs/contributors"
}],
"require": {
"silvershop/core": "3.x-dev",
"symbiote/silverstripe-gridfieldextensions": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"guzzle/plugin-mock": "^3.1",
"omnipay/dummy": "^2.1",
"omnipay/paymentexpress": "^2.1"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"autoload": {
"psr-4": {
"SilverShop\\Stock\\": "src/",
"SilverShop\\Stock\\Tests\\": "tests/unit/"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}