-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
composer.json
44 lines (44 loc) · 1.1 KB
/
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
38
39
40
41
42
43
44
{
"name": "tanmuhittin/laravel-google-translate",
"description": "Translate translation files to other languages using google translate api",
"license": "MIT",
"require": {
"illuminate/console": ">=5.1",
"php": ">=7.1.0",
"illuminate/support": "^5.5|^6|^7|^8|^9|^10|^11",
"illuminate/translation": "^5.5|^6|^7|^8|^9|^10|^11",
"stichoza/google-translate-php": "^5.0.1",
"google/cloud-translate": "^1.7.4",
"yandex/translate-api": "^1.5.2",
"ext-json": "*"
},
"extra": {
"laravel": {
"providers": [
"Tanmuhittin\\LaravelGoogleTranslate\\LaravelGoogleTranslateServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Tanmuhittin\\LaravelGoogleTranslate\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tanmuhittin\\LaravelGoogleTranslateTests\\": "tests"
}
},
"authors": [
{
"name": "Muhittin Tan",
"email": "[email protected]"
}
],
"require-dev": {
"phpunit/phpunit": "^10.5",
"orchestra/testbench": "5.x-dev|6.x-dev|9.x-dev"
},
"minimum-stability": "dev",
"prefer-stable": true
}