forked from ctf0/Lingo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.06 KB
/
Copy pathcomposer.json
File metadata and controls
48 lines (48 loc) · 1.06 KB
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
{
"name": "ctf0/lingo",
"description": "GUI to manage laravel translation files",
"homepage": "https://github.com/ctf0/Lingo",
"license": "MIT",
"keywords": [
"ctf0",
"lingo",
"laravel",
"gui",
"translation",
"lang",
"manager"
],
"authors": [
{
"name": "Muah",
"email": "muah003@gmail.com"
}
],
"require": {
"php" : "~7.0",
"illuminate/support": "~5.4.0|~5.5.0|~5.6.0",
"themsaid/laravel-langman": "^1.3",
"ctf0/package-changelog": "^1.0"
},
"autoload": {
"psr-4": {
"ctf0\\Lingo\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"ctf0\\Lingo\\LingoServiceProvider"
]
},
"changeLog": "logs"
},
"config": {
"sort-packages": true
},
"scripts": {
"post-package-install": [
"@php artisan vendor:publish --provider=\"ctf0\\Lingo\\LingoServiceProvider\""
]
}
}