-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
57 lines (57 loc) · 1.65 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
55
56
57
{
"name":"hofff/contao-calendarfield",
"description":"Frontend text field with datepicker for Contao Open Source CMS",
"keywords":["contao", "calendar", "calendar field", "datepicker", "forms"],
"type":"contao-bundle",
"license":"LGPL-3.0-or-later",
"homepage" : "https://hofff.com",
"authors":[
{
"name":"terminal42 gmbh",
"homepage":"http://terminal42.ch",
"role": "Developer"
},
{
"name": "Cliff Parnitzky",
"homepage": "https://hofff.com",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Nicky Hoff",
"homepage": "https://hofff.com",
"email": "[email protected]",
"role": "Manager"
}
],
"require":{
"php": ">=7.3",
"contao/core-bundle":"~4.9",
"menatwork/contao-multicolumnwizard-bundle":"~3.4"
},
"autoload": {
"psr-4": {
"Hofff\\CalendarfieldBundle\\": "src/"
},
"classmap": [
"src/Resources/contao/"
],
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/",
"src/Resources/contao/languages/"
]
},
"replace": {
"contao-legacy/calendarfield": "self.version",
"terminal42/contao-calendarfield": "self.version"
},
"extra":{
"contao-manager-plugin": "Hofff\\CalendarfieldBundle\\ContaoManager\\Plugin",
"branch-alias": {
"dev-master": "4.0.x-dev"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}