forked from FluidTYPO3/vhs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.05 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
{
"name": "fluidtypo3/vhs",
"description": "The vhs package from FluidTYPO3",
"type": "typo3-cms-extension",
"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"
},
"homepage": "https://fluidtypo3.org",
"license": "GPL-2.0+",
"autoload": {
"psr-4": {
"FluidTYPO3\\Vhs\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"FluidTYPO3\\Vhs\\Tests\\": "Tests/"
}
},
"require": {
"php": ">=7.0.0",
"typo3/cms": ">=7.6.13, <=7.6.99|^8.4.1"
},
"replace": {
"vhs": "self.version",
"typo3-ter/vhs": "self.version"
},
"require-dev": {
"fluidtypo3/development": "^3.0"
},
"suggest": {
"ext-tidy": "Allows to make use of the tidy ViewHelper"
}
}