-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
45 lines (45 loc) · 1.09 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
{
"name": "mittwald/varnishcache",
"description": "Varnishcache TYPO3 Extension",
"homepage": "https://www.mittwald.de",
"license": [
"GPL-2.0-or-later"
],
"require": {
"typo3/cms-core": "^12.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0"
},
"type": "typo3-cms-extension",
"autoload": {
"psr-4": {
"Mittwald\\Varnishcache\\": "Classes/"
}
},
"replace": {
"typo3-ter/varnishcache": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"scripts": {
"extension-package": ["bash Build/package-version.sh"],
"post-autoload-dump": [
"mkdir -p .Build/public/typo3conf/ext/",
"[ -L .Build/public/typo3conf/ext/varnishcache ] || ln -snvf ../../../../. .Build/public/typo3conf/ext/varnishcache"
]
},
"extra": {
"typo3/cms": {
"extension-key": "varnishcache",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/public"
}
}
}