-
-
Notifications
You must be signed in to change notification settings - Fork 387
/
Copy pathcomposer.json
37 lines (37 loc) · 933 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
37
{
"name": "stichoza/google-translate-php",
"description": "Free Google Translate API PHP Package",
"keywords": ["google", "translate", "translator", "php", "translating"],
"license": "MIT",
"type": "library",
"homepage": "https://github.com/Stichoza/google-translate-php",
"authors": [
{
"name": "Levan Velijanashvili",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.0",
"ext-dom": "*",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10"
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"autoload": {
"psr-4": {
"Stichoza\\GoogleTranslate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Stichoza\\GoogleTranslate\\Tests\\": "tests/"
}
}
}