forked from FluidTYPO3/flux
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.45 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": "fluidtypo3/flux",
"description": "The flux package from FluidTYPO3",
"type": "typo3-cms-extension",
"homepage": "http://fluidtypo3.org",
"license": "GPL-2.0+",
"preferred-install": "dist",
"prefer-stable": true,
"minimum-stability": "dev",
"support": {
"irc": "irc://irc.freenode.org/fedext",
"issues": "https://github.com/FluidTYPO3/fluidcontent/issues"
},
"autoload": {
"psr-4": {
"FluidTYPO3\\Flux\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"FluidTYPO3\\Flux\\Tests\\": "Tests/"
}
},
"suggest": {
"fluidtypo3/vhs": "ViewHelper library for Fluid templates.",
"fluidtypo3/fluidpages": "Gives the ability to render Page Templates with pure fluid.",
"fluidtypo3/fluidcontent_core": "Gives the ability to render core content elements with pure fluid."
},
"require": {
"php": ">=7.1.0",
"typo3/cms-core": "^8.7 || ^9 || dev-master",
"typo3/cms-fluid": "^8.7 || ^9 || dev-master",
"typo3/cms-backend": "^8.7 || ^9 || dev-master",
"typo3/cms-frontend": "^8.7 || ^9 || dev-master",
"typo3/cms-recordlist": "^8.7 || ^9 || dev-master"
},
"replace": {
"flux": "self.version",
"typo3-ter/flux": "self.version"
},
"require-dev": {
"fluidtypo3/development": "^4"
},
"non-feature-branches": ["development", "staging"]
}