-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 780 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 780 Bytes
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
{
"name": "emptynick/voyager-2fa",
"description": "Two-factor authentication for Voyager II",
"keywords": ["voyager2-plugin", "voyager", "2fa", "two", "factor", "auth", "authentication"],
"license": "MIT",
"authors": [
{
"name": "Christoph Schweppe",
"email": "info@cschweppe.de"
}
],
"autoload": {
"psr-4": {
"Emptynick\\TwoFA\\": "src/"
}
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"Emptynick\\TwoFA\\TwoFAServiceProvider"
]
}
},
"require": {
"pragmarx/google2fa-laravel": "^2.0",
"bacon/bacon-qr-code": "^2.0",
"voyager-admin/voyager": "2.x-dev"
}
}