-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.59 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.59 KB
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
{
"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,
"allow-plugins": {
"infection/extension-installer": true
}
},
"require-dev": {
"ext-json": "*",
"ext-simplexml": "*",
"friendsofphp/php-cs-fixer": "^3.94.2",
"infection/infection": "^0.32.6",
"phpstan/phpstan": "^2.1.40",
"phpstan/phpstan-phpunit": "^2.0.16",
"phpunit/phpunit": "^11.5.55 || ^12.5.14 || ^13.0.5",
"psr/container": "^2.0.2",
"t3docs/fluid-documentation-generator": "^4.4.2"
},
"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"
],
"extra": {
"branch-alias": {
"dev-main": "5.x-dev"
}
}
}