-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.15 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.15 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
{
"name": "weakbit/fallback-cache",
"description": "Uses a fallback cache if your cache has status red",
"license": [
"GPL-2.0-or-later"
],
"type": "typo3-cms-extension",
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"typo3/cms-core": "~11.5.0 || ~12.4.0 || ~13.4.0"
},
"require-dev": {
"phpstan/extension-installer": "^1.1",
"pluswerk/grumphp-config": "*",
"rybakit/msgpack": "*",
"saschaegerer/phpstan-typo3": "^2.0.0 || ^3.0.1",
"ssch/typo3-rector": "*",
"typo3/testing-framework": "*"
},
"autoload": {
"psr-4": {
"Weakbit\\FallbackCache\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Weakbit\\FallbackCache\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true,
"pluswerk/grumphp-config": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"lock": false
},
"extra": {
"typo3/cms": {
"extension-key": "fallback_cache"
}
},
"scripts": {
"test": "@php ./vendor/bin/phpunit"
}
}