-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.25 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
{
"name": "vonheldenundgestalten/contao-boxes",
"type": "contao-bundle",
"description": "Provides flexible boxes for Contao CMS to manage content on a by-page basis.",
"license": "LGPL-3.0-or-later",
"keywords": [
"contao",
"content",
"box",
"boxes"
],
"authors": [
{
"name": "Markus Milkereit",
"email": "[email protected]",
"homepage": "http://www.vonheldenundgestalten.de",
"role": "Developer"
},
{
"name": "Marko Todic",
"role": "Developer"
},
{
"name": "Miroslav Horvatov",
"email": "[email protected]",
"homepage": "https://github.com/Kimleta",
"role": "Developer"
}
],
"require": {
"php": "^7.2 || ^8.0",
"contao/core-bundle": "^4.4"
},
"extra": {
"contao-manager-plugin": "VHUG\\Contao\\Boxes\\ContaoManager\\Plugin"
},
"autoload": {
"psr-4": {
"VHUG\\Contao\\Boxes\\": "src/"
},
"classmap": [
"src/Resources/contao/"
],
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/",
"src/Resources/contao/languages/",
"src/Resources/contao/templates/"
]
},
"replace": {
"magmell-agentur/contao-boxes":"*"
}
}