-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 908 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
{
"name": "dieschittigs/contao-openingtime-bundle",
"description": "Edit and show opening times in contao",
"type": "contao-bundle",
"keywords":["contao","openingtime","bundle"],
"require": {
"php": "^5.6|^7.0",
"contao/core-bundle": "^4.4",
"menatwork/contao-multicolumnwizard": "~3.3"
},
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Martin Schittig",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"DieSchittigs\\SttgsOpeningtimeBundle\\" : "src/"
},
"classmap": [
"src/Resources/contao/"
],
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/"
]
},
"extra": {
"contao-manager-plugin": "DieSchittigs\\SttgsOpeningtimeBundle\\ContaoManager\\Plugin"
}
}