-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
37 lines (37 loc) · 869 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": "itsmattburgess/laravel-translate",
"description": "Populate laravel translation files using services such as Google Translate",
"license": "MIT",
"keywords": [
"laravel",
"translations",
"translate",
"intl"
],
"authors": [
{
"name": "Matt Burgess",
"email": "matt.burgess92@googlemail.com"
}
],
"require": {
"php": ">=7.3",
"ext-json": "*",
"google/cloud-translate": "^1.2"
},
"require-dev": {
"orchestra/testbench": "^6"
},
"extra": {
"laravel": {
"providers": [
"itsmattburgess\\LaravelTranslate\\TranslationServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"itsmattburgess\\LaravelTranslate\\": "src/"
}
}
}