-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
67 lines (67 loc) · 2.03 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
{
"name": "cyberspectrum/i18n-contao-bundle",
"description": "Simple translation mapping and exporting of contao content",
"license": "MIT",
"keywords": [
"i18n"
],
"type": "contao-bundle",
"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-bundle/issues",
"source": "https://github.com/cyberspectrum/i18n-contao-bundle"
},
"require": {
"php": "^7.1.3",
"contao/core-bundle": "^4.4.0",
"cyberspectrum/i18n": "^1.0.0@dev",
"cyberspectrum/i18n-bundle": "^1.0.0@dev",
"cyberspectrum/i18n-contao": "^1.0.0@dev",
"cyberspectrum/i18n-xliff": "^1.0.0@dev",
"symfony/config": "^3.4 | ^4.1 | ^5.0",
"symfony/dependency-injection": "^3.4 | ^4.1 | ^5.0",
"symfony/form": "^3.4 | ^4.1 | ^5.0",
"symfony/framework-bundle": "^3.4 | ^4.1 | ^5.0",
"symfony/http-kernel": "^3.4 | ^4.1 | ^5.0",
"symfony/http-foundation": "^3.4 | ^4.1 | ^5.0",
"symfony/options-resolver": "^3.4 | ^4.1 | ^5.0",
"symfony/routing": "^3.4 | ^4.1 | ^5.0",
"symfony/security-csrf": "^3.4 | ^4.1 | ^5.0",
"symfony/templating": "^3.4 | ^4.1 | ^5.0"
},
"require-dev": {
"contao/manager-plugin": "^2.6.0",
"phpcq/all-tasks": "^1.3",
"metamodels/core": "^2.1",
"contao-community-alliance/dc-general": "^2.1",
"cyberspectrum/i18n-metamodels": "^1.0.0@dev"
},
"suggest": {
"cyberspectrum/i18n-metamodels": "For MetaModels support"
},
"autoload": {
"psr-4": {
"CyberSpectrum\\I18N\\ContaoBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CyberSpectrum\\I18N\\ContaoBundle\\Test\\": "tests"
}
},
"extra": {
"contao-manager-plugin": "CyberSpectrum\\I18N\\ContaoBundle\\ContaoManager\\Plugin",
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}