forked from tighten/ziggy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 949 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
34
35
36
37
38
39
{
"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": {
"laravel/framework": ">=5.4@dev"
},
"license": "MIT",
"authors": [
{
"name": "Daniel Coulbourne",
"email": "daniel@tighten.co"
},
{
"name": "Matt Stauffer",
"email": "matt@tighten.co"
}
],
"autoload": {
"psr-4": {
"Tightenco\\Ziggy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tightenco\\Tests\\": "tests/"
}
},
"require-dev": {
"orchestra/testbench": "~3.6",
"mikey179/vfsstream": "^1.6"
},
"extra": {
"laravel": {
"providers": [
"Tightenco\\Ziggy\\ZiggyServiceProvider"
]
}
}
}