forked from terminal42/contao-changelanguage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (84 loc) · 2.65 KB
/
Copy pathcomposer.json
File metadata and controls
84 lines (84 loc) · 2.65 KB
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": "^8.1",
"contao/core-bundle": "^5.3",
"league/uri-components": "^2.0 || ^7.0",
"doctrine/dbal": "^3.6 || ^4",
"psr/container": "^1 || ^2",
"symfony/config": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/event-dispatcher-contracts": "^3.0",
"symfony/http-foundation": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/routing": "^6.4 || ^7.0",
"symfony/security-core": "^6.4 || ^7.0",
"symfony/service-contracts": "^3.0"
},
"require-dev": {
"terminal42/contao-build-tools": "dev-main",
"contao/manager-plugin": "^2.0",
"contao/news-bundle": "^5.3",
"contao/calendar-bundle": "^5.3",
"contao/faq-bundle": "^5.3",
"phpunit/phpunit": "^12.4",
"contao/test-case": "^5.0",
"symfony/monolog-bundle": "^3.1",
"symfony/var-exporter": "^6.4 || ^7"
},
"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
}
}
}