-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
71 lines (71 loc) · 1.89 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
{
"name": "netzmacht/contao-i18n",
"description": "This library provides a toolkit for flexible i18n websites..",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"keywords": [
"contao",
"i18n",
"l10n",
"multilingual",
"language"
],
"authors": [
{
"name": "David Molineus",
"email": "[email protected]",
"homepage": "https://netzmacht.de",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/netzmacht/contao-i18n/issues",
"source": "https://github.com/netzmacht/contao-i18n"
},
"require": {
"php": "^8.1",
"contao/core-bundle": "^4.13",
"doctrine/dbal": "^3.3",
"hofff/contao-root-relations": "^3.0",
"menatwork/contao-multicolumnwizard-bundle": "^3.5",
"netzmacht/contao-toolkit": "^3.8",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/asset": "^5.4",
"symfony/config": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/http-foundation": "^5.4",
"symfony/http-kernel": "^5.4",
"symfony/translation-contracts": "^2.3",
"terminal42/contao-changelanguage": "^3.0"
},
"require-dev": {
"contao/calendar-bundle": "^4.13",
"contao/faq-bundle": "^4.13",
"contao/manager-plugin": "^2.0",
"contao/news-bundle": "^4.13",
"doctrine/coding-standard": "^11.0",
"phpcq/runner-bootstrap": "^1.0@dev"
},
"suggest": {},
"autoload": {
"psr-4": {
"Netzmacht\\Contao\\I18n\\": "src/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"extra": {
"branch-alias": {
"dev-develop": "3.1.x-dev",
"dev-master": "3.0.x-dev"
},
"contao-manager-plugin": "Netzmacht\\Contao\\I18n\\ContaoManager\\Plugin"
}
}