-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.07 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
{
"name": "westacks/laravel-auth",
"description": "Backend controllers and scaffolding for building your own Laravel authentication.",
"type": "library",
"homepage": "https://github.com/westacks/telebot",
"license": "MIT",
"authors": [
{
"name": "PunyFlash",
"email": "puny.flash@gmail.com",
"homepage": "https://github.com/PunyFlash"
}
],
"require": {
"php": "^7.2 || ^8.0",
"illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"conflict": {
"laravel/ui": ">=1.0"
},
"suggest": {
"laravel/sanctum": ">=1.0"
},
"autoload": {
"psr-4": {
"WeStacks\\Laravel\\Auth\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"WeStacks\\Laravel\\Auth\\Providers\\AuthServiceProvider"
]
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}