forked from twigphp/twig-extra-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.25 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": "twig/extra-bundle",
"type": "symfony-bundle",
"description": "A Symfony bundle for extra Twig extensions",
"keywords": ["twig", "extra", "bundle"],
"homepage": "https://twig.symfony.com",
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Fabien Potencier",
"email": "[email protected]",
"homepage": "http://fabien.potencier.org",
"role": "Lead Developer"
}
],
"require": {
"php": ">=7.2.5",
"symfony/framework-bundle": "^4.4|^5.0|^6.0|^6.1",
"symfony/twig-bundle": "^4.4|^5.0|^6.0|^6.1",
"twig/twig": "^2.7|^3.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0|^6.1",
"twig/cssinliner-extra": "^2.12|^3.0",
"twig/html-extra": "^2.12|^3.0",
"twig/inky-extra": "^2.12|^3.0",
"twig/intl-extra": "^2.12|^3.0",
"twig/markdown-extra": "^2.12|^3.0",
"twig/string-extra": "^2.12|^3.0"
},
"autoload": {
"psr-4" : { "Twig\\Extra\\TwigExtraBundle\\" : "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.14-dev"
}
}
}