-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
64 lines (64 loc) · 1.77 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "astrotomic/laravel-auth-recovery-codes",
"type": "library",
"description": "This package provides Laravel bindings and a Eloquent/Model trait for pragmarx/recovery package.",
"keywords": [
"astrotomic",
"laravel",
"authentication",
"recovery-codes",
"2fa",
"tfa",
"mfa",
"two factor authentication",
"multi factor authentication",
"two-factor-authentication",
"multi-factor-authentication"
],
"homepage": "https://github.com/astrotomic/laravel-auth-recovery-codes",
"license": "MIT",
"authors": [
{
"name": "Tom Witkowski",
"email": "gummibeer@astrotomic.info",
"homepage": "https://gummibeer.de",
"role": "Developer"
}
],
"require": {
"php": "^7.4 || ^8.0",
"astrotomic/php-conditional-proxy": "^0.2.0",
"illuminate/contracts": "^7.0 || ^8.0",
"illuminate/database": "^7.0 || ^8.0",
"illuminate/support": "^7.0 || ^8.0",
"pragmarx/recovery": "^0.2.0"
},
"require-dev": {
"orchestra/testbench": "^5.0 || ^6.0",
"phpunit/phpunit": "^9.3"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Astrotomic\\AuthRecoveryCodes\\AuthRecoveryCodesServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Astrotomic\\AuthRecoveryCodes\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Astrotomic\\AuthRecoveryCodes\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
}
}