forked from Stichoza/google-translate-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 888 Bytes
/
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
{
"name": "inhere/google-translate-php",
"description": "Free Google Translate API PHP Package",
"keywords": ["google", "translate", "translator", "php"],
"license": "MIT",
"homepage": "http://github.com/inhere/google-translate-php",
"authors": [
{
"name": "Levan Velijanashvili",
"email": "[email protected]"
},
{
"name": "inhere",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"ext-json": "*",
"ext-mbstring": "*",
"inhere/comlib": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": {
"Inhere\\GoogleTranslate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Inhere\\GoogleTranslate\\Tests\\": "tests/"
}
}
}