-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
25 lines (25 loc) · 1.06 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
{
"name": "heimrichhannot/contao-news-list-reader-bundle",
"type": "contao-bundle",
"description": "This bundle enhances the support of list and reader bundle for the contao news entity.",
"license": "LGPL-3.0-or-later",
"require": {
"php": "^8.1",
"contao/core-bundle": "^4.13.46",
"contao/news-bundle": "^4.13",
"heimrichhannot/contao-head-bundle": "^1.11",
"symfony/event-dispatcher": "^4.4 || ^5.4"
},
"suggest": {
"heimrichhannot/contao-list-bundle": "This bundle offers a generic list module to use with arbitrary contao entities containing standard list handling like pagination, sorting, and filtering.",
"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."
},
"autoload": {
"psr-4": {
"HeimrichHannot\\NewsListReaderBundle\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "HeimrichHannot\\NewsListReaderBundle\\ContaoManager\\Plugin"
}
}