forked from menatwork/MultiColumnWizard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
80 lines (80 loc) · 2.12 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "menatwork/contao-multicolumnwizard-bundle",
"type": "contao-bundle",
"description": "MultiColumWizard for Contao OpenSource CMS",
"keywords": [
"contao",
"widget",
"wizard"
],
"homepage": "http://www.men-at-work.de",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Andreas Isaak",
"email": "[email protected]",
"homepage": "http://www.men-at-work.de",
"role": "Project leader"
},
{
"name": "David Maack",
"email": "[email protected]",
"homepage": "http://www.men-at-work.de",
"role": "Developer"
},
{
"name": "Andreas Schempp",
"email": "[email protected]",
"homepage": "http://www.terminal42.ch",
"role": "Developer"
},
{
"name": "Yanick Witschi",
"email": "[email protected]",
"homepage": "http://www.terminal42.ch",
"role": "Developer"
},
{
"name": "Tristan Lins",
"email": "[email protected]",
"homepage": "http://bit3.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/menatwork/MultiColumnWizard/issues",
"wiki": "http://de.contaowiki.org/MultiColumnWizard",
"irc": "irc://irc.freenode.org/contao.dev",
"source": "https://github.com/menatwork/MultiColumnWizard"
},
"require": {
"php": "^5.6 || ^7.0",
"contao/core-bundle": "^4.4.8"
},
"require-dev": {
"cyberspectrum/contao-toolbox": "~0.7",
"phpcq/all-tasks": "~1.2",
"contao/manager-bundle": "~4.4"
},
"autoload": {
"psr-4": {
"MenAtWork\\MultiColumnWizardBundle\\": "src",
"MenAtWork\\MultiColumnWizard\\": "legacy_layer/psr-4-maw",
"MultiColumnWizard\\": "legacy_layer/psr-4-mcw"
},
"classmap": [
"legacy_layer/classmap"
]
},
"replace": {
"contao-legacy/multicolumnwizard": "*",
"menatwork/contao-multicolumnwizard": "self.version"
},
"extra": {
"contao-manager-plugin": "MenAtWork\\MultiColumnWizardBundle\\ContaoManager\\Plugin",
"branch-alias": {
"dev-master": "3.3.x-dev",
"dev-develop": "3.4.x-dev"
}
}
}