-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
55 lines (55 loc) · 1.29 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
48
49
50
51
52
53
54
55
{
"name": "b13/proxycachemanager",
"description": "TYPO3 Extension that automatically flushes cached URLs within a proxy / CDN.",
"keywords": ["typo3", "cdn", "varnish", "cache", "purge", "proxy"],
"homepage": "https://b13.com/",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Benni Mack",
"role": "Maintainer"
}
],
"support": {
"general": "https://github.com/b13/proxycachemanager/",
"issues": "https://github.com/b13/proxycachemanager/issues/"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"sort-packages": true,
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"require": {
"php": "^8.1",
"typo3/cms-backend": "^11.5 || ^12.4 || ^13.4",
"typo3/cms-frontend": "^11.5 || ^12.4 || ^13.4"
},
"require-dev": {
"saschaegerer/phpstan-typo3": "^1.8",
"typo3/coding-standards": "^0.7",
"typo3/tailor": "^1.0"
},
"extra": {
"typo3/cms": {
"extension-key": "proxycachemanager",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".Build",
"web-dir": ".Build/Web"
}
},
"autoload": {
"psr-4": {
"B13\\Proxycachemanager\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"B13\\Proxycachemanager\\Tests\\": "Tests/"
}
}
}