-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.59 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
{
"name": "inspiredminds/contao-language-autoswitch",
"description": "Contao extension to automatically switch page, archive and calendar references in modules according to the current language.",
"type": "contao-bundle",
"license": "LGPL-3.0-or-later",
"homepage": "https://github.com/inspiredminds/contao-language-autoswitch",
"authors": [
{
"name": "Fritz Michael Gschwantner",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/inspiredminds/contao-language-autoswitch/issues",
"source": "https://github.com/inspiredminds/contao-language-autoswitch",
"forum": "https://community.contao.org/de"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/fritzmg"
}
],
"require": {
"php": ">=8.1",
"contao/core-bundle": "^4.9 || ^5.0",
"symfony/http-kernel": "^4.4 || ^5.1 || ^6.0",
"terminal42/contao-changelanguage": "^3.1"
},
"autoload": {
"psr-4": {
"InspiredMinds\\ContaoLanguageAutoswitch\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "InspiredMinds\\ContaoLanguageAutoswitch\\ContaoManager\\Plugin"
},
"require-dev": {
"contao/easy-coding-standard": "^5.0",
"contao/rector": "^1.0"
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"php-http/discovery": false,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}