-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.1 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
{
"name": "ljubadr/easyroutes",
"type": "library",
"description": "Web interface for laravel routes",
"keywords": [
"laravel",
"web",
"routes",
"helper"
],
"homepage": "https://github.com/ljubadr/easyroutes",
"license": "MIT",
"authors": [
{
"name": "Ljubomir Drakulovic",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Ljubadr\\EasyRoutes\\": "src/"
}
},
"minimum-stability": "dev",
"require": {
"php": ">=5.3.0"
},
"extra": {
"laravel": {
"providers": [
"Ljubadr\\EasyRoutes\\Providers\\EasyRoutesServiceProvider"
]
}
},
"scripts": {
"post-package-install": [
"php artisan vendor:publish --provider=\"Ljubadr\\EasyRoutes\\Providers\\EasyRoutesServiceProvider\""
],
"post-package-update": [
"php artisan vendor:publish --provider=\"Ljubadr\\EasyRoutes\\Providers\\EasyRoutesServiceProvider\" --tag=assets --force"
]
}
}