forked from TYPO3/Fluid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.13 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
{
"name": "typo3fluid/fluid",
"description": "The TYPO3 Fluid template rendering engine",
"homepage": "https://github.com/TYPO3/Fluid",
"support": {
"docs": "https://docs.typo3.org/other/typo3fluid/fluid/main/en-us/",
"issues": "https://github.com/TYPO3/Fluid/issues",
"source": "https://github.com/TYPO3/Fluid"
},
"license": ["LGPL-3.0-or-later"],
"require": {
"php": "^7.2 || ^8.0"
},
"config": {
"sort-packages": true
},
"require-dev": {
"ext-mbstring": "*",
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/phpstan": "^1.7",
"phpstan/phpstan-phpunit": "^1.1",
"phpunit/phpunit": "^8.5.26 || ^9.5"
},
"suggest": {
"ext-json": "PHP JSON is needed when using JSONVariableProvider: A relatively rare use case"
},
"autoload": {
"psr-4": {
"TYPO3Fluid\\Fluid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TYPO3Fluid\\FluidExamples\\": "examples/src/",
"TYPO3Fluid\\Fluid\\Tests\\": "tests/"
}
},
"bin": [
"bin/fluid"
]
}