-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
80 lines (80 loc) · 2.82 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "heimrichhannot/contao-list-bundle",
"type": "contao-bundle",
"description": "This bundle offers a generic list module to use with arbitrary contao entities containing standard list handling like pagination, sorting, and filtering.",
"keywords": [
"contao",
"list"
],
"license": "LGPL-3.0-or-later",
"homepage": "https://github.com/heimrichhannot/contao-list-bundle",
"authors": [
{
"name": "Heimrich & Hannot",
"email": "digitales@heimrich-hannot.de",
"homepage": "https://www.heimrich-hannot.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/heimrichhannot/contao-list-bundle/issues"
},
"require": {
"php": "^7.4 || ^8.0",
"contao/core-bundle": "^4.9",
"heimrichhannot/contao-be_explanation-bundle": "^2.2",
"heimrichhannot/contao-config-element-type-bundle": "^0.2",
"heimrichhannot/contao-encore-contracts": "^1.0",
"heimrichhannot/contao-filter-bundle": "^1.19",
"heimrichhannot/contao-twig-support-bundle": "^0.2|^1.0",
"heimrichhannot/contao-utils-bundle": "^2.128",
"heimrichhannot-contao-components/masonry": ">=4.2, <=4.3",
"heimrichhannot-contao-components/imagesloaded": "4.1.*",
"heimrichhannot-contao-components/jscroll": "2.3.*",
"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||^2||^3",
"symfony/http-kernel": "^4.4||^5.4",
"symfony/polyfill-php80": "^v1.24.0",
"symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
},
"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"
},
"conflict": {
"heimrichhannot/contao-reader-bundle": "<=1.0.0-beta54"
},
"autoload": {
"psr-4": {
"HeimrichHannot\\ListBundle\\": "src/"
},
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/",
"src/Resources/contao/languages/",
"src/Resources/contao/templates/"
]
},
"autoload-dev": {
"psr-4": {
"HeimrichHannot\\ListBundle\\Test\\": "tests/"
}
},
"extra": {
"contao-manager-plugin": "HeimrichHannot\\ListBundle\\ContaoManager\\Plugin"
},
"suggest": {
"heimrichhannot/contao-reader-bundle": "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."
}
}