forked from Happyr/TranslationBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (35 loc) · 1.05 KB
/
composer.json
File metadata and controls
36 lines (35 loc) · 1.05 KB
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
{
"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": "tobias@happyr.com"
}
],
"require": {
"php": ">=5.5.9",
"symfony/symfony":"~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": {
"php-http/guzzle6-adapter": "~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/"
}
}
}