-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
52 lines (52 loc) · 1.51 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
52
{
"name": "heimrichhannot/contao-utils-bundle",
"type": "contao-bundle",
"description": "This bundle offers various utility functionality for the Contao CMS.",
"license": "LGPL-3.0-or-later",
"require": {
"ext-dom": "*",
"ext-simplexml": "*",
"php": "^8.1",
"contao/core-bundle": "^4.13 || ^5.0",
"doctrine/dbal": "^2.13 || ^3.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/config": "^5.4 || ^6.0",
"symfony/event-dispatcher-contracts": "^1.0 || ^2.0 || ^3.0",
"symfony/filesystem": "^5.4 || ^6.0",
"symfony/http-foundation": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/string": "^5.2 || ^6.0",
"twig/twig": "^3.0"
},
"require-dev": {
"contao/test-case": "^4.0 || ^5.0",
"contao/manager-plugin": "^2.0",
"heimrichhannot/contao-test-utilities-bundle": "^0.1",
"phpunit/phpunit": "^8.0 || ^9.0",
"php-coveralls/php-coveralls": "^2.0",
"symfony/phpunit-bridge": "^5.4 || ^6.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.2"
},
"autoload": {
"psr-4": {
"HeimrichHannot\\UtilsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HeimrichHannot\\UtilsBundle\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": false
}
},
"extra": {
"contao-manager-plugin": "HeimrichHannot\\UtilsBundle\\ContaoManager\\Plugin"
}
}