-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
49 lines (49 loc) · 1.13 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
{
"name": "cyberspectrum/i18n-xliff",
"description": "Simple translation mapping and exporting of xliff files",
"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-xliff/issues",
"source": "https://github.com/cyberspectrum/i18n-xliff"
},
"require": {
"php": "^7.1.3",
"cyberspectrum/i18n": "^1.0.0@dev",
"psr/log": "^1.1",
"symfony/finder": "^3.4 | ^4.2 | ^5.0",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"phpcq/all-tasks": "^1.3",
"symfony/filesystem": "^3.4 | ^4.2 | ^5.0"
},
"autoload": {
"psr-4": {
"CyberSpectrum\\I18N\\Xliff\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CyberSpectrum\\I18N\\Xliff\\Test\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}