-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·43 lines (43 loc) · 1.12 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": "imokhles/multi-auth-command",
"description": "create laravel multi-auth guard setup files, middleware, models, migrations etc",
"keywords": [
"laravel",
"laravel multiauth",
"laravel multi-auth",
"laravel multiple authentication"
],
"require": {
"illuminate/support": "^7.0",
"prologue/alerts": "^0.4.1",
"illuminate/console": "^7.0",
"symfony/process": "^5.0",
"illuminate/database": "^7.0",
"laravel/ui": "^2.0"
},
"license": "MIT",
"authors": [
{
"name": "iMokhles",
"email": "[email protected]",
"homepage": "https://imokhles.com",
"role": "Software Engineer"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"iMokhles\\MultiAuthCommand\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"laravel": {
"providers": [
"iMokhles\\MultiAuthCommand\\MultiAuthCommandServiceProvider"
]
}
}
}