-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.2 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.2 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
{
"name": "silverstripe-terraformers/keys-for-cache",
"description": "Silverstripe cache key management",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"cache",
"keys"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Adrian Humphreys",
"email": "adrhumphreys@gmail.com"
},
{
"name": "Christopher David Penny",
"email": "chris.penny@gmail.com"
}
],
"require": {
"php": "^8.1",
"silverstripe/framework": "^6"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"tractorcow/silverstripe-fluent": "^8",
"slevomat/coding-standard": "~8.8.0",
"silverstripe/cms": "^6"
},
"autoload": {
"psr-4": {
"Terraformers\\KeysForCache\\": "src/",
"Terraformers\\KeysForCache\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}