-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
56 lines (56 loc) · 1.23 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
{
"name": "dynamic/foxystripe",
"description": "FoxyStripe is a SilverStripe ecommerce module that integrates with FoxyCart for order processing.",
"authors": [
{
"name": "Dynamic",
"email": "dev@dynamicagency.com",
"homepage": "http://www.dynamicagency.com"
}
],
"keywords": [
"silverstripe",
"foxycart",
"foxystripe",
"dynamic",
"ecommerce"
],
"type": "silverstripe-vendormodule",
"license": "BSD-3-Clause",
"require": {
"silverstripe/recipe-cms": "^1.0@dev || ^4.0@dev",
"symbiote/silverstripe-gridfieldextensions": "^3.1@dev",
"dynamic/silverstripe-country-dropdown-field": "^1.0@dev",
"foxycart/foxyclient": "^2.0",
"silverstripe/vendor-plugin": "^1.0",
"unclecheese/display-logic": "^2.0@dev",
"bummzack/sortablefile": "^2.1"
},
"require-dev": {
"phpunit/pphpunit": "^5.7",
"squizlabs/php_codesniffer": "*"
},
"config": {
"process-timeout": 600
},
"autoload": {
"psr-4": {
"Dynamic\\FoxyStripe\\": "src/",
"Dynamic\\FoxyStripe\\Test\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"expose": [
"thirdparty",
"css",
"javascript",
"client/dist"
],
"installer-name": "foxystripe",
"branch-alias": {
"dev-master": "4.0.x-dev"
}
}
}