-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
53 lines (53 loc) · 1.46 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
{
"name": "php-translation/phraseapp-adapter",
"description": "Adapter for phraseapp.",
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "[email protected]"
},
{
"name": "Sascha-Oliver Prolic",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"php-translation/common": "^0.2",
"php-translation/symfony-storage": "^0.3.2",
"friendsofapi/phraseapp": "^0.3.0",
"symfony/translation": "^2.7 || ^3.0",
"symfony/yaml": "^2.7 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^6.3",
"nyholm/symfony-bundle-test": "^1.2",
"php-http/curl-client": "^1.6",
"php-http/httplug-bundle": "^1.3",
"guzzlehttp/psr7": "^1.3",
"php-http/message": "^1.4",
"phpunit/php-token-stream": "^1.4.9"
},
"autoload": {
"psr-4": {
"Translation\\PlatformAdapter\\PhraseApp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Translation\\PlatformAdapter\\PhraseApp\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
},
"minimum-stability": "dev",
"prefer-dist": "true",
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
}
}
}