-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
84 lines (84 loc) · 2.77 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
81
82
83
84
{
"name": "terminal42/contao-changelanguage",
"description": "ChangeLanguage extension for Contao Open Source CMS",
"keywords": ["contao", "change", "language"],
"type": "contao-bundle",
"license": "LGPL-3.0+",
"authors": [
{
"name": "terminal42 gmbh",
"homepage": "https://www.terminal42.ch"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/terminal42"
},
{
"type": "other",
"url": "https://ko-fi.com/terminal42"
}
],
"support": {
"issues": "https://github.com/terminal42/contao-changelanguage/issues",
"source": "https://github.com/terminal42/contao-changelanguage",
"forum": "https://community.contao.org",
"docs": "https://extensions.terminal42.ch/docs/changelanguage/"
},
"require": {
"php": "^7.4 || ^8.0",
"contao/core-bundle": "^4.13.25 || ^5.0",
"league/uri": "^6.0 || ^7.0",
"league/uri-components": "^2.0 || ^7.0",
"doctrine/dbal": "^3.3",
"symfony/config": "^5.0 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^5.0 || ^6.0 || ^7.0",
"symfony/event-dispatcher-contracts": "^2.0 || ^3.0",
"symfony/http-kernel": "^5.0 || ^6.0 || ^7.0",
"symfony/routing": "^5.0 || ^6.0 || ^7.0",
"symfony/security-core": "^5.0 || ^6.0 || ^7.0",
"symfony/service-contracts": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
"terminal42/contao-build-tools": "dev-main",
"contao/manager-plugin": "^2.0",
"contao/news-bundle": "^4.13 || ^5.0",
"contao/calendar-bundle": "^4.13 || ^5.0",
"contao/faq-bundle": "^4.13 || ^5.0",
"phpunit/phpunit": "^9.3",
"symfony/phpunit-bridge": "^5.4",
"contao/test-case": "^4.13 || ^5.0",
"symfony/monolog-bundle": "^3.1",
"terminal42/service-annotation-bundle": "^1.1"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0",
"terminal42/contao-newslanguage": "*",
"aschempp/contao-calendarlanguage": "*"
},
"autoload": {
"psr-4": {
"Terminal42\\ChangeLanguage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Terminal42\\ChangeLanguage\\Tests\\": "tests/"
}
},
"extra": {
"contao-manager-plugin": "Terminal42\\ChangeLanguage\\ContaoManager\\Plugin"
},
"scripts": {
"unit-tests": "@php vendor/bin/phpunit --colors=always"
},
"config": {
"allow-plugins": {
"terminal42/contao-build-tools": true,
"contao-components/installer": false,
"contao/manager-plugin": false,
"php-http/discovery": false
}
}
}