-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
44 lines (44 loc) · 1.15 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": "vemcogroup/laravel-translation",
"description": "Translation package for Laravel to scan for localisations and up/download to poeditor",
"keywords": [
"i18n",
"laravel",
"poeditor",
"translations"
],
"homepage": "https://github.com/vemcogroup/laravel-translation",
"license": "MIT",
"authors": [
{
"name": "Henrik B Hansen",
"email": "[email protected]",
"homepage": "https://www.vemcogroup.com",
"role": "Developer"
}
],
"require": {
"php": "^7.3|^8.0",
"ext-json": "*",
"symfony/finder": "^4.3|^5.0|^6.0|^7.0",
"guzzlehttp/guzzle": "^6.3|^7.0",
"laravel/framework": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0"
},
"autoload": {
"psr-4": {
"Vemcogroup\\Translation\\": "src/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Vemcogroup\\Translation\\TranslationServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}