-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 1.32 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
{
"name": "cyberspectrum/i18n-contao",
"description": "Simple translation mapping and exporting of contao content",
"license": "MIT",
"keywords": [
"i18n"
],
"type": "library",
"homepage": "https://www.cyberspectrum.de/",
"authors": [
{
"name": "Christian Schiffler",
"email": "[email protected]",
"homepage": "https://www.cyberspectrum.de",
"role": "Maintainer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/cyberspectrum/i18n-contao/issues",
"source": "https://github.com/cyberspectrum/i18n-contao"
},
"require": {
"php": "^7.2",
"ext-json": "*",
"ext-pdo": "*",
"cyberspectrum/i18n": "^1.0.0@dev",
"doctrine/dbal": "^2.6",
"psr/container": "^1.0",
"psr/log": "^1.1",
"symfony/expression-language": "^3.4 | ^4.1 | ^5.0"
},
"require-dev": {
"phpcq/all-tasks": "^1.3",
"symfony/debug": "^3.4 | ^4.1"
},
"suggest": {
"cyberspectrum/i18n-contao-bundle": "For integration in Contao and service registration."
},
"autoload": {
"psr-4": {
"CyberSpectrum\\I18N\\Contao\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CyberSpectrum\\I18N\\Contao\\Test\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}