forked from b13/proxycachemanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 1.93 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"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": "^7.2 || ^8.0",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"typo3/cms-core": "^10.0 || ^11.0",
"doctrine/dbal": "~2.13.1"
},
"require-dev": {
"typo3/testing-framework": "^6",
"phpunit/phpunit": "^8.4",
"typo3/cms-core": "^10",
"typo3/cms-frontend": "^10",
"typo3/coding-standards": "^0.5",
"phpstan/phpstan": "^0.12.11",
"typo3/tailor": "^1.0"
},
"extra": {
"typo3/cms": {
"extension-key": "proxycachemanager",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".Build",
"web-dir": ".Build/Web"
}
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare",
"if [ ! -e .Build/Web/vendor ]; then cd .Build/Web && ln -s ../vendor && cd -; fi",
"if [ ! -e .Build/Web/typo3conf/ext/json_response ]; then cd .Build/Web/typo3conf/ext && ln -s ../../../vendor/typo3/testing-framework/Resources/Core/Functional/Extensions/json_response && cd -; fi",
"if [ ! -e .Build/Web/typo3conf/sites ]; then cd .Build/Web/typo3conf && ln -s ../../../Build/sites && cd -; fi"
]
},
"autoload": {
"psr-4": {
"B13\\Proxycachemanager\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"B13\\Proxycachemanager\\Tests\\": "Tests/"
}
}
}