-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
43 lines (43 loc) · 1.29 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
{
"name": "zenstruck/twig-service-bundle",
"description": "Make functions, static methods, Symfony service methods available in your twig templates.",
"homepage": "https://github.com/zenstruck/twig-service-bundle",
"type": "symfony-bundle",
"license": "MIT",
"keywords": ["twig", "dependency injection", "service"],
"authors": [
{
"name": "Kevin Bond",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
"symfony/twig-bundle": "^5.4|^6.0|^7.0"
},
"require-dev": {
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.6.21",
"symfony/console": "^5.4|^6.0|^7.0",
"symfony/phpunit-bridge": "^6.1|^7.0",
"symfony/var-dumper": "^5.4|^6.0|^7.0",
"twig/twig": "2.16.1|^3.0|^4.0",
"zenstruck/console-test": "^1.4"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": { "Zenstruck\\Twig\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Zenstruck\\Twig\\Tests\\": "tests/" },
"files": [
"tests/Fixture/functions.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}