-
Notifications
You must be signed in to change notification settings - Fork 93
/
composer.json
46 lines (46 loc) · 1.34 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": "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": "^8.2",
"ext-mbstring": "*"
},
"config": {
"sort-packages": true
},
"require-dev": {
"ext-json": "*",
"ext-simplexml": "*",
"friendsofphp/php-cs-fixer": "^3.59.3",
"phpstan/phpstan": "^1.11.5",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpunit/phpunit": "^11.2.5",
"t3docs/fluid-documentation-generator": "^4.3",
"psr/container": "^2.0"
},
"suggest": {
"ext-json": "PHP JSON is needed when using JSONVariableProvider: A relatively rare use case",
"ext-simplexml": "SimpleXML is required for the XSD schema generator"
},
"autoload": {
"psr-4": {
"TYPO3Fluid\\Fluid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TYPO3Fluid\\FluidExamples\\": "examples/src/",
"TYPO3Fluid\\Fluid\\Tests\\": "tests/"
}
},
"bin": [
"bin/fluid"
]
}