This repository was archived by the owner on Jan 3, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.4 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.4 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
49
50
51
52
53
54
55
{
"name": "ctf0/simple-menu",
"description": "create a menu that support page (multiLocale 'title/ url/ prefix', nesting, template, static/dynamic, roles & permissions).",
"homepage": "https://github.com/ctf0/SimpleMenu",
"license": "MIT",
"keywords": [
"ctf0",
"SimpleMenu",
"menu",
"manager",
"laravel",
"gui",
"multi-locale"
],
"authors": [
{
"name": "Muah",
"email": "muah003@gmail.com"
}
],
"require": {
"illuminate/support": ">=5.4 <9.0",
"gazsp/baum": "*",
"mcamara/laravel-localization": "*",
"spatie/laravel-permission": "*",
"spatie/laravel-translatable": "*",
"codezero/laravel-unique-translation": "*",
"ctf0/package-changelog": "*",
"laravelcollective/html": "*"
},
"autoload": {
"psr-4": {
"ctf0\\SimpleMenu\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"ctf0\\SimpleMenu\\SimpleMenuServiceProvider"
],
"aliases": {
"SimpleMenu": "ctf0\\SimpleMenu\\Facade\\SimpleMenu"
}
},
"changeLog": "logs"
},
"config": {
"sort-packages": true
},
"scripts": {
"post-package-install": [
"@php artisan vendor:publish"
]
}
}