-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·39 lines (39 loc) · 1006 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": "bengr/routing",
"description": "Package for implementing multiple solutions for routing in laravel application (regular routing, controller discovery, view discovery...)",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "matejkrenek",
"email": "mate23.krenek@gmail.com"
}
],
"autoload": {
"psr-4": {
"Bengr\\Routing\\": "src/",
"Bengr\\Routing\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Bengr\\Routing\\RoutingServiceProvider"
],
"aliases": {
"Routing": "Bengr\\Routing\\Facades\\Routing"
}
}
},
"scripts": {
"test": "phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"orchestra/testbench": "^7.13"
},
"require": {
"spatie/laravel-package-tools": "^1.15"
}
}