forked from tighten/ziggy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 834 Bytes
/
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
{
"name": "tightenco/ziggy",
"description": "Generates a Blade directive exporting all of your named Laravel routes. Also provides a nice route() helper function in JavaScript.",
"require": {
"illuminate/routing": "~5.6",
"illuminate/filesystem": "~5.6",
"illuminate/console": "~5.6"
},
"license": "MIT",
"authors": [
{
"name": "Daniel Coulbourne",
"email": "[email protected]"
},
{
"name": "Matt Stauffer",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Tightenco\\Ziggy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tightenco\\Tests\\": "tests/"
}
},
"require-dev": {
"mikey179/vfsStream": "^1.6"
}
}