-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
80 lines (80 loc) · 2.38 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": "contao-community-alliance/merger2",
"description": "Module merger V2 for Contao OpenSource CMS",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"keywords": [
"contao",
"theme",
"layout",
"module"
],
"authors": [
{
"name": "David Molineus",
"email": "[email protected]",
"homepage": "https://netzmacht.de",
"role": "Developer"
}
],
"homepage": "http://c-c-a.org",
"support": {
"issues": "https://github.com/contao-community-alliance/merger2/issues",
"wiki": "https://github.com/contao-community-alliance/merger2/wiki",
"irc": "irc://irc.freenode.org/contao.dev",
"source": "https://github.com/contao-community-alliance/merger2"
},
"require": {
"php": "^8.0",
"ext-json": "*",
"ext-mbstring": "*",
"contao/core-bundle": "^4.13 || ^5.0",
"doctrine/dbal": "^2.11 || ^3.1",
"menatwork/contao-multicolumnwizard-bundle": "^3.5",
"mobiledetect/mobiledetectlib": "^2.8 || ^3.74",
"symfony/config": "^4.4 || ^5.1 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.1 || ^6.0",
"symfony/http-foundation": "^4.4 || ^5.1 || ^6.0",
"symfony/http-kernel": "^4.4.13 || ^5.1.5 || ^6.0",
"symfony/translation-contracts": "^1.1 || ^2.0 || ^3.0",
"symfony/twig-bundle": "^4.4 || ^5.1 || ^6.0",
"symfony/yaml": "^4.4 || ^5.1 || ^6.0",
"twig/twig": "^2.0 || ^3.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"phpcompatibility/php-compatibility": "dev-develop",
"phpcq/coding-standard": "^2.1.2",
"phpcq/runner-bootstrap": "1.x-dev",
"phpcsstandards/phpcsutils": "^1.0@dev",
"sebastian/diff": "^4.0"
},
"replace": {
"bi3/contao-merger2": "self.version",
"contao-legacy/merger2": "self.version"
},
"conflict": {
"contao/manager-plugin": "<2.2 || >=3.0"
},
"autoload": {
"psr-4": {
"ContaoCommunityAlliance\\Merger2\\": "src"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"contao-components/installer": false,
"contao/manager-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"extra": {
"branch-alias": {
"dev-develop": "4.4.x-dev",
"dev-master": "4.3.x-dev"
},
"contao-manager-plugin": "ContaoCommunityAlliance\\Merger2\\ContaoManager\\Plugin"
}
}