-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.13 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.13 KB
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
44
{
"name": "erinrugas/laravel-2fa",
"description": "Minimal starter laravel application with two factor authentication and using bootstrap 5.",
"keywords": [
"erinrugas",
"laravel-2fa",
"two-factor-authentication",
"bootstrap-5"
],
"homepage": "https://github.com/erinrugas/laravel-2fa",
"license": "MIT",
"authors": [
{
"name": "Erin Rugas",
"email": "erinjohnrugas@gmail.com"
}
],
"require": {
"php": "^8.0",
"bacon/bacon-qr-code": "^2.0",
"illuminate/support": "^9.0",
"pragmarx/google2fa-laravel": "^1.4"
},
"autoload": {
"psr-4": {
"ErinRugas\\Laravel2fa\\": "src"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"ErinRugas\\Laravel2fa\\TwoFactorAuthServiceProvider"
],
"aliases": {
"TwoFactorAuth": "ErinRugas\\Laravel2fa\\Facades\\TwoFactorAuth"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}