forked from b13/proxycachemanager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 922 Bytes
/
Copy pathcomposer.json
File metadata and controls
41 lines (41 loc) · 922 Bytes
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": "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": {
"sort-packages": true
},
"require": {
"php": "^7.2",
"guzzlehttp/guzzle": "^6.0",
"typo3/cms-core": "^9.0 || ^10.0"
},
"extra": {
"typo3/cms": {
"extension-key": "proxycachemanager"
}
},
"autoload": {
"psr-4": {
"B13\\Proxycachemanager\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"B13\\Proxycachemanager\\Tests\\": "Tests/"
}
}
}