forked from symbiote/silverstripe-oldman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.16 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
{
"name": "webbuilders-group/silverstripe-oldman",
"description": "A simple cache purging module for Silverstripe.",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Ed Chipman",
"homepage": "https://webbuildersgroup.com",
"role": "Developer"
},
{
"name": "Symbiote",
"homepage": "https://www.symbiote.com.au/"
},
{
"name": "Jake Bentvelzen",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"silverstripe/cms": "^4|^5",
"cloudflare/sdk": "~1.3"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"phpcbf": "phpcbf -n src/ tests/"
},
"autoload": {
"psr-4": {
"Symbiote\\Cloudflare\\": "src/",
"Symbiote\\Cloudflare\\Tests\\": "tests/"
}
},
"replace": {
"symbiote/silverstripe-oldman": "*"
},
"prefer-stable": true,
"minimum-stability": "dev"
}