-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
45 lines (45 loc) · 1.19 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
{
"name": "php-translation/converter",
"description": "Converts your translation files to Xliff",
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "[email protected]"
}
],
"require": {
"php": "^5.5 || ^7.0",
"php-translation/symfony-storage": "^1.0.1",
"symfony/console": "^2.7 || ^3.0 || ^4.0",
"symfony/yaml": "^2.7 || ^3.0 || ^4.0",
"symfony/finder": "^2.7 || ^3.0 || ^4.0",
"symfony/config": "^2.7 || ^3.0 || ^4.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.0",
"php-translation/symfony-bundle": "^0.8"
},
"autoload": {
"psr-4": {
"Translation\\Converter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Translation\\Converter\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/simple-phpunit",
"test-ci": "vendor/bin/simple-phpunit --coverage-text --coverage-clover=build/coverage.xml"
},
"bin": [
"src/translation-converter"
],
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}