-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
63 lines (63 loc) · 1.67 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
{
"name": "hofff/contao-language-relations",
"description": "Maintaining relations between translated pages.",
"keywords": [ "utility", "translation", "page", "tree", "contao" ],
"type": "contao-bundle",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Nicky Hoff",
"email": "[email protected]",
"homepage": "https://www.hofff.com",
"role": "Maintainer"
},
{
"name": "Christian Schiffler",
"email": "[email protected]",
"homepage": "https://www.hofff.com",
"role": "Developer"
},
{
"name": "David Molineus",
"email": "[email protected]",
"homepage": "https://www.hofff.com",
"role": "Developer"
},
{
"name": "Oliver Hoff",
"email": "[email protected]",
"homepage": "https://www.hofff.com",
"role": "Creator"
}
],
"require": {
"php": "^7.2",
"ext-intl": "*",
"contao/core-bundle": "^4.4",
"discordier/justtextwidgets": "^1.2",
"hofff/contao-selectri": "^4.0.5",
"hofff/contao-root-relations": "^3.0",
"menatwork/contao-multicolumnwizard-bundle" : "^3.4",
"symfony/dependency-injection": "^3.4.26 || ^4.2.7",
"symfony/http-kernel": "^3.4.26 || ^4.2.7"
},
"require-dev": {
"contao/manager-plugin": "^2.1",
"doctrine/coding-standard": "^5.0",
"slevomat/coding-standard": "^4.8.6"
},
"conflict": {
"contao/manager-plugin": "<2.1 || >= 3.0"
},
"autoload": {
"psr-4": {
"Hofff\\Contao\\LanguageRelations\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
},
"contao-manager-plugin": "Hofff\\Contao\\LanguageRelations\\ContaoManager\\Plugin"
}
}