-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathcomposer.json
59 lines (59 loc) · 1.14 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
50
51
52
53
54
55
56
57
58
59
{
"name": "nwidart/laravel-menus",
"description": "Laravel Menu management",
"keywords": [
"laravel",
"menus",
"navigation",
"nav",
"bootstrap"
],
"license": "MIT",
"authors": [
{
"name": "Nicolas Widart",
"email": "[email protected]"
},
{
"name": "Pingpong Labs",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3",
"illuminate/support": "^8.0",
"illuminate/config": "^8.0",
"illuminate/view": "^8.0",
"laravelcollective/html": "6.2.*"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"mockery/mockery": "~1.0",
"orchestra/testbench": "^6.2",
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"psr-4": {
"Nwidart\\Menus\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Nwidart\\Menus\\Tests\\": "Tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "6.0-dev"
},
"laravel": {
"providers": [
"Nwidart\\Menus\\MenusServiceProvider"
],
"aliases": {
"Menu": "Nwidart\\Menus\\Facades\\Menu"
}
}
},
"minimum-stability": "stable"
}