forked from FluidTYPO3/flux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.69 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
{
"name": "fluidtypo3/flux",
"description": "The flux package from FluidTYPO3",
"type": "typo3-cms-extension",
"homepage": "http://fluidtypo3.org",
"license": "GPL-2.0+",
"prefer-stable": true,
"minimum-stability": "dev",
"support": {
"issues": "https://github.com/FluidTYPO3/flux/issues"
},
"autoload": {
"psr-4": {
"FluidTYPO3\\Flux\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"FluidTYPO3\\Flux\\Tests\\": "Tests/"
}
},
"suggest": {
"fluidtypo3/vhs": "ViewHelper library for Fluid templates."
},
"require": {
"php": "^7.4.0 || ^8",
"ext-json": "*",
"typo3/cms-core": "^8.7 || ^9 || ^10 || ^11 || dev-master",
"ext-dom": "*",
"typo3/cms-fluid": "^8.7 || ^9 || ^10 || ^11 || dev-master",
"typo3/cms-backend": "^8.7 || ^9 || ^10 || ^11 || dev-master",
"typo3/cms-frontend": "^8.7 || ^9 || ^10 || ^11 || dev-master",
"typo3/cms-recordlist": "^8.7 || ^9 || ^10 || ^11 || dev-master"
},
"extra": {
"typo3/cms": {
"extension-key": "flux"
}
},
"replace": {
"typo3-ter/flux": "self.version"
},
"require-dev": {
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^5.7 || ^9.5",
"php-coveralls/php-coveralls": "^2.5",
"squizlabs/php_codesniffer": "^3.7",
"mikey179/vfsstream": "^1.6",
"phpspec/prophecy": "*"
},
"non-feature-branches": ["development", "staging"],
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
}
}