forked from heimrichhannot/contao-twig-support-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.23 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
{
"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.2|^8.0",
"ext-json": "*",
"contao/core-bundle": "^4.4",
"symfony/http-kernel": "^3.4|^4.4",
"symfony/finder": "^3.4|^4.4",
"twig/twig": "^1.26|^2.7|^3.0",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"contao/test-case": "1.1.*",
"contao/core-bundle": ">=4.4.0,<4.11",
"contao/manager-plugin": "^2.0",
"friendsofphp/php-cs-fixer": "^2.2",
"phpunit/phpunit": "^6.5",
"phpunit/phpunit-mock-objects": "^4.0|^5.0",
"phpunit/php-token-stream": "^1.4|^2.0|^3.0",
"php-http/guzzle6-adapter": "^1.1",
"php-http/message-factory": "^1.0.2",
"satooshi/php-coveralls": "^2.0",
"symfony/phpunit-bridge": "^3.2",
"heimrichhannot/contao-test-utilities-bundle": "^0.1.3"
},
"autoload": {
"psr-4": {
"HeimrichHannot\\TwigSupportBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HeimrichHannot\\TwigSupportBundle\\Test\\": "tests/"
}
},
"extra": {
"contao-manager-plugin": "HeimrichHannot\\TwigSupportBundle\\ContaoManager\\Plugin"
}
}