-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.17 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.17 KB
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
{
"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": {
"php": "^8.1",
"silverstripe/recipe-cms": "^5.0",
"symbiote/silverstripe-gridfieldextensions": "^4.0",
"dynamic/foxyclient": "^3.0",
"unclecheese/display-logic": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.0"
},
"config": {
"process-timeout": 600
},
"autoload": {
"psr-4": {
"Dynamic\\FoxyStripe\\": "src/",
"Dynamic\\FoxyStripe\\Test\\": "tests/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/dynamic/foxyclient-php",
"no-api": true
}
],
"prefer-stable": true,
"extra": {
"expose": [
"thirdparty/flexslider",
"thirdparty/shadowbox",
"css",
"javascript",
"client/dist"
],
"installer-name": "foxystripe"
}
}