-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 930 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
38
{
"name": "carlin/laravel-translate-drives",
"license": "Apache-2.0",
"description": "Baidu, Alibaba Cloud Translate, and Google Translate driver package, ready to use out of the box",
"keywords": [
"laravel",
"driver",
"php",
"translate",
"baidu",
"alibaba cloud",
"google translate",
"free google translate",
"translate drives"
],
"autoload": {
"psr-4": {
"Carlin\\LaravelTranslateDrives\\": "src/"
}
},
"authors": [
{
"name": "wanghaojie",
"email": "814425737@qq.com"
}
],
"require": {
"carlin/translate-drives": "^1.0",
"laravel/framework": ">=8"
},
"extra": {
"laravel": {
"providers": [
"Carlin\\LaravelTranslateDrives\\TranslateDrivesServiceProvider"
]
}
}
}