-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathcomposer.json
49 lines (49 loc) · 1.28 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
45
46
47
48
49
{
"name": "kg-bot/laravel-localization-to-vue",
"description": "Laravel package used to collect all localization files from resources/lang (and custom) directories and sub-directories and make them available as JSON file",
"require": {
"php": "^8.0",
"laravel/framework": "5.*|^6|^7|^8|^9|^10.0|^11.0",
"ext-json": "*"
},
"keywords": [
"laravel",
"vue.js",
"trans",
"localization",
"json"
],
"license": "MIT",
"authors": [
{
"name": "Stefan Ninic",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"KgBot\\LaravelLocalization\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"KgBot\\LaravelLocalization\\LaravelLocalizationServiceProvider"
],
"aliases": {
"ExportLocalization": "KgBot\\LaravelLocalization\\Facades\\ExportLocalizations"
}
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"funding": [
{
"type": "buy-me-a-coffee",
"url": "https://rebrand.ly/laravel-localization-to-vue"
}
]
}