forked from joelbutcher/laravel-make-commands
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 897 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
{
"name": "joelbutcher/laravel-make-commands",
"description": "A simple package for extending functionality of the core make commands in Laravel",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Joel Butcher",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.0",
"illuminate/routing": "^5.5|^6|^7|^8|^9",
"illuminate/session": "^5.5|^6|^7|^8|^9",
"illuminate/support": "^5.5|^6|^7|^8|^9"
},
"autoload": {
"psr-4": {
"JoelButcher\\LaravelMakeCommands\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"JoelButcher\\LaravelMakeCommands\\ServiceProvider"
]
}
},
"require-dev": {
"laravel/framework": "^7.12"
}
}