-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
64 lines (64 loc) · 2.35 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "heimrichhannot/contao-reader-bundle",
"type": "contao-bundle",
"description": "This bundle offers a generic reader module to use with arbitrary contao entities containing standard reader specific functionality like field output, images and auto_item handling.",
"license": "LGPL-3.0-or-later",
"require": {
"php": "^7.4 || ^8.0",
"contao/core-bundle": "^4.9",
"doctrine/dbal": "^2.10 || ^3.0",
"heimrichhannot/contao-be_explanation-bundle": "^2.2",
"heimrichhannot/contao-config-element-type-bundle": "^0.2",
"heimrichhannot/contao-entity-filter-bundle": "^1.0",
"heimrichhannot/contao-filter-bundle": "^1.0",
"heimrichhannot/contao-request-bundle": "^1.3",
"heimrichhannot/contao-status_messages": "^1.0|^2.0",
"heimrichhannot/contao-twig-support-bundle": "^0.2|^1.0",
"heimrichhannot/contao-utils-bundle": "^2.206",
"symfony/config": "^4.4||^5.4",
"symfony/console": "^4.4||^5.4",
"symfony/dependency-injection": "^4.4||^5.4",
"symfony/event-dispatcher": "^4.4||^5.4",
"symfony/event-dispatcher-contracts": "^1.0 || ^2.0 || ^3.0",
"symfony/filesystem": "^4.4||^5.4",
"symfony/http-foundation": "^4.4||^5.4",
"symfony/http-kernel": "^4.4||^5.4",
"symfony/polyfill-php80": "^v1.26.0",
"symfony/routing": "^4.4||^5.4",
"symfony/service-contracts": "^1.0 || ^2.0 || ^3.0",
"symfony/translation": "^4.4||^5.4",
"symfony/translation-contracts": "^1.1.6||^2||^3"
},
"require-dev": {
"contao/test-case": "1.1.*",
"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"
},
"suggest": {
"heimrichhannot/contao-list-bundle": "Offers a generic list module."
},
"conflict": {
"heimrichhannot/contao-list-bundle": "<1.51.0",
"heimrichhannot/contao-head-bundle": "<1.10.0"
},
"autoload": {
"psr-4": {
"HeimrichHannot\\ReaderBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HeimrichHannot\\ReaderBundle\\Test\\": "tests/"
}
},
"extra": {
"contao-manager-plugin": "HeimrichHannot\\ReaderBundle\\ContaoManager\\Plugin"
}
}