-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
51 lines (51 loc) · 1.49 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
47
48
49
50
51
{
"name": "heimrichhannot/contao-twig-support-bundle",
"type": "contao-bundle",
"description": "This bundle add twig template support to contao",
"license": "LGPL-3.0-or-later",
"require": {
"php": "^7.4 || ^8.0",
"contao/core-bundle": "^4.13",
"ext-json": "*",
"symfony/cache": "^4.4||^5.4",
"symfony/config": "^4.4||^5.4",
"symfony/event-dispatcher": "^4.4||^5.4",
"symfony/event-dispatcher-contracts": "^1||^2||^3",
"symfony/finder": "^4.4||^5.4",
"symfony/http-foundation": "^4.4||^5.4",
"symfony/http-kernel": "^4.4||^5.4",
"symfony/stopwatch": "^4.4||^5.4",
"twig/twig": "^1.26||^2.7||^3.0",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"contao/core-bundle": "^4.13",
"contao/test-case": "^4.9",
"contao/manager-plugin": "^2.0",
"friendsofphp/php-cs-fixer": "^2.2",
"phpunit/phpunit": "^8.0 || ^9.0",
"php-coveralls/php-coveralls": "^2.0",
"symfony/phpunit-bridge": "^4.4 || ^5.4",
"heimrichhannot/contao-test-utilities-bundle": "^0.1.5"
},
"autoload": {
"psr-4": {
"HeimrichHannot\\TwigSupportBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HeimrichHannot\\TwigSupportBundle\\Test\\": "tests/"
}
},
"extra": {
"contao-manager-plugin": "HeimrichHannot\\TwigSupportBundle\\ContaoManager\\Plugin"
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": false
}
}
}