-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
executable file
·39 lines (38 loc) · 1.03 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
{
"name": "trilobit-gmbh/contao-filecontent-bundle",
"type": "contao-bundle",
"description": "Contao 4 filecontent bundle",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "trilobit GmbH",
"homepage": "https://github.com/trilobit-gmbh"
}
],
"require": {
"contao/core-bundle": "~4.9",
"php": "^7.3"
},
"require-dev": {
"contao/manager-plugin": "^2.11",
"friendsofphp/php-cs-fixer": "^2.9.3"
},
"conflict": {
"contao-components/installer": "<1.3",
"contao/core-bundle": "<4.4.8"
},
"autoload": {
"psr-4": {
"Trilobit\\FilecontentBundle\\": "src/"
},
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/",
"src/Resources/contao/languages/",
"src/Resources/contao/templates/"
]
},
"extra": {
"contao-manager-plugin": "Trilobit\\FilecontentBundle\\ContaoManager\\Plugin"
}
}