-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 991 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
35
36
37
38
39
40
41
{
"name": "innoweb/silverstripe-section-io",
"description": "Integration of the section.io varnish cache",
"type": "silverstripe-vendormodule",
"license": "BSD-3-Clause",
"keywords": ["silverstripe", "caching", "varnish", "section.io"],
"homepage": "https://github.com/xini/silverstripe-section-io",
"authors": [{
"name": "Florian Thoma",
"homepage": "https://www.innoweb.com.au"
}],
"require": {
"silverstripe/cms": "^4",
"silverstripe/vendor-plugin": "^1",
"guzzlehttp/guzzle": "~6.3"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"replace": {
"xini/silverstripe-section-io": "self.version"
},
"autoload": {
"psr-4": {
"Innoweb\\SectionIO\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Innoweb\\SectionIO\\Tests\\": "tests/"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}