-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
65 lines (65 loc) · 1.78 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
{
"name": "contao-community-alliance/contao-multicolumnwizard-frontend-bundle",
"description": "Frontend support for the MultiColumnWizard",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"keywords": [
"contao",
"multicolumnwizard",
"mcw",
"frontend",
"frontendediting",
"metamodels",
"cca"
],
"authors": [
{
"name": "Richard Henkenjohann",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://c-c-a.org/",
"support": {
"issues": "https://github.com/contao-community-alliance/contao-multicolumnwizard-frontend/issues",
"source": "https://github.com/contao-community-alliance/contao-multicolumnwizard-frontend"
},
"require": {
"php": "^8.1",
"contao/core-bundle": "^4.13.0 <5.0",
"menatwork/contao-multicolumnwizard-bundle": "^3.6",
"symfony/config": "^5.4",
"symfony/console": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/http-foundation": "^5.4",
"symfony/http-kernel": "^5.4"
},
"require-dev": {
"contao/manager-bundle": "^4.13.0 <5.0",
"phpcq/runner-bootstrap": "^1.0@dev",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"ContaoCommunityAlliance\\MultiColumnWizardFrontendBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ContaoCommunityAlliance\\MultiColumnWizardFrontendBundle\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": true
}
},
"extra": {
"branch-alias": {
"dev-feature/2.3.0": "2.3.x-dev"
},
"contao-manager-plugin": "ContaoCommunityAlliance\\MultiColumnWizardFrontendBundle\\ContaoManager\\Plugin"
}
}