-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcomposer.json
49 lines (48 loc) · 1.54 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
{
"name": "happyr/translation-bundle",
"type": "symfony-bundle",
"description": "Integrate Symfony with translations SaaS like http://localise.biz",
"keywords": [],
"homepage": "http://developer.happyr.com",
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "[email protected]"
}
],
"require": {
"php": "^5.5.9 || ^7.0",
"symfony/framework-bundle": "^2.7 || ^3.0",
"sensio/framework-extra-bundle": "^2.7 || ^3.0",
"php-http/httplug": "^1.0",
"php-http/plugins": "^1.0",
"php-http/client-implementation": "^1.0",
"psr/log": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.5 || ^5.4",
"matthiasnoback/symfony-dependency-injection-test": "^1.0",
"symfony/symfony": "^2.3 || ^3.0",
"php-http/guzzle6-adapter": "~1.0",
"php-http/httplug-bundle": "~1.0"
},
"suggest": {
"php-http/httplug-bundle": "To easier configure your httplug clients.",
"happyr/auto-fallback-translation-bundle": "To automatically translate phrases that are missing form your secondary language."
},
"autoload": {
"psr-4": {
"Happyr\\TranslationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Happyr\\TranslationBundle\\tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}