forked from menatwork/contao-news-most-read-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1023 Bytes
/
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
{
"name": "menatwork/contao-news-most-read-bundle",
"type": "contao-bundle",
"description": "Extends the Contao news list element with an sort by most read option.",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Sven Meierhans - MEN AT WORK Werbeagentur GmbH",
"homepage": "https://www.men-at-work.de",
"email": "meierhans@men-at-work.de",
"role": "developer"
}
],
"require": {
"php": "^7.4 || ^8.0",
"contao/news-bundle": "^4.5",
"jaybizzle/crawler-detect": "^1.2"
},
"conflict": {
"contao/core": "*"
},
"extra": {
"contao-manager-plugin": "MenAtWork\\NewsMostReadBundle\\ContaoManager\\Plugin"
},
"autoload": {
"psr-4": {
"MenAtWork\\NewsMostReadBundle\\": "src/"
},
"classmap": [
"src/Resources/contao/"
],
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/",
"src/Resources/contao/languages/",
"src/Resources/contao/templates/"
]
}
}