-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
48 lines (48 loc) · 1.25 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
{
"name": "rspeekenbrink/laravel-menu",
"description": "Simple menu generation in Laravel",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Remco Speekenbrink",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2|^8.0",
"illuminate/contracts": "^6|^7|^8|^9|^10|^11",
"illuminate/database": "^6|^7|^8|^9|^10|^11",
"illuminate/support": "^6|^7|^8|^9|^10|^11",
"ext-json": "*"
},
"require-dev": {
"fakerphp/faker":"^1.9.1",
"illuminate/auth": "^6|^7|^8|^9|^10|^11",
"orchestra/testbench": "^4.8|^5|^6|^7|^8|^9|^10",
"phpunit/phpunit": "^7|^8|^9|^10|^11"
},
"autoload": {
"psr-4": {
"RSpeekenbrink\\LaravelMenu\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"RSpeekenbrink\\LaravelMenu\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"RSpeekenbrink\\LaravelMenu\\MenuServiceProvider"
],
"aliases": {
"Menu": "RSpeekenbrink\\LaravelMenu\\Facades\\Menu"
}
}
}
}