-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
24 lines (24 loc) · 871 Bytes
/
composer.json
File metadata and controls
24 lines (24 loc) · 871 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
{
"name": "exercise/google-translate-bundle",
"type": "symfony-bundle",
"description": "This bundle include service for translate with Google Translate and command which translate messages in your Bundles",
"keywords": ["translation","google","translate","google-translate","symfony","api","php"],
"homepage": "https://github.com/Exercise/GoogleTranslateBundle",
"license": "MIT",
"minimum-stability": "dev",
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": "~2.2",
"symfony/console": "~2.2",
"symfony/yaml": "~2.2",
"guzzle/guzzle": "3.*"
},
"require-dev": {
"symfony/finder": "~2.0",
"symfony/browser-kit": "2.4.*@dev"
},
"autoload": {
"psr-0": { "Exercise\\GoogleTranslateBundle": "" }
},
"target-dir": "Exercise/GoogleTranslateBundle"
}