-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 758 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 758 Bytes
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
{
"name": "eko/googletranslatebundle",
"type": "library",
"description": "A Symfony bundle to deals with Google Translate API",
"keywords": ["google", "translate", "bundle", "api", "detect", "language"],
"homepage": "http://github.com/eko/GoogleTranslateBundle",
"license": "MIT",
"authors": [
{
"name": "Vincent Composieux",
"email": "vincent.composieux@gmail.com"
}
],
"require": {
"php": "^5.3|^7.0",
"symfony/framework-bundle": "^2.3|^3.0",
"guzzlehttp/guzzle": "~6.0"
},
"autoload": {
"psr-4": { "Eko\\GoogleTranslateBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}