forked from spatie/laravel-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.04 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
{
"name": "spatie/laravel-menu",
"description": "Html menu generator for Laravel",
"keywords": [
"spatie",
"laravel-menu"
],
"homepage": "https://github.com/spatie/laravel-menu",
"license": "MIT",
"authors": [
{
"name": "Sebastian De Deyne",
"email": "sebastiandedeyne@gmail.com",
"homepage": "https://spatie.be",
"role": "Developer"
}
],
"require": {
"php" : "^7.0",
"illuminate/auth": "~5.1.14|~5.2.0|~5.3.0",
"illuminate/contracts": "~5.1.14|~5.2.0|~5.3.0",
"illuminate/support": "~5.1.14|~5.2.0|~5.3.0",
"spatie/menu": "^2.0.0"
},
"require-dev": {
"orchestra/testbench": "^3.3",
"phpunit/phpunit": "^5.2"
},
"autoload": {
"psr-4": {
"Spatie\\Menu\\Laravel\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\Menu\\Laravel\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}