forked from FluidTYPO3/vhs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.83 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
{
"name": "fluidtypo3/vhs",
"description": "The vhs package from FluidTYPO3",
"type": "typo3-cms-extension",
"non-feature-branches": ["development"],
"support": {
"irc": "irc://irc.freenode.org/fedext",
"issues": "https://github.com/FluidTYPO3/vhs/issues"
},
"keywords": [
"TYPO3 CMS",
"templating",
"Utility",
"ViewHelper",
"fedext",
"fluid"
],
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true,
"homepage": "https://fluidtypo3.org",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"FluidTYPO3\\Vhs\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"FluidTYPO3\\Vhs\\Tests\\": "Tests/"
}
},
"require": {
"php": "^7.0.0",
"typo3/cms-core": "^8.7 || ^9 || ^10 || ^11.1@dev || dev-master",
"typo3/cms-extbase": "^8.7 || ^9 || ^10 || ^11.1@dev || dev-master",
"typo3/cms-fluid": "^8.7 || ^9 || ^10 || ^11.1@dev || dev-master",
"typo3/cms-frontend": "^8.7 || ^9 || ^10 || ^11.1@dev || dev-master",
"typo3/cms-backend": "^8.7 || ^9 || ^10 || ^11.1@dev || dev-master"
},
"replace": {
"typo3-ter/vhs": "self.version"
},
"require-dev": {
"fluidtypo3/development": "^4.0"
},
"suggest": {
"ext-tidy": "Allows to make use of the tidy ViewHelper"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p build/web/typo3conf/ext/",
"[ -L build/web/typo3conf/ext/vhs ] || ln -snvf ../../../../. build/web/typo3conf/ext/vhs"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "vhs",
"web-dir": "build/web"
}
}
}