-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.71 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": "empuxa/laravel-totp-login",
"description": "Say goodbye to passwords and sign in via PIN instead.",
"keywords": [
"empuxa",
"totp-login",
"passwordless"
],
"homepage": "https://github.com/empuxa/laravel-totp-login",
"license": "MIT",
"authors": [
{
"name": "Marco Raddatz",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^9.52|^10.0|^11.0",
"illuminate/events": "^9.52|^10.0|^11.0",
"illuminate/notifications": "^9.52|^10.0|^11.0",
"illuminate/routing": "^9.52|^10.0|^11.0",
"illuminate/support": "^9.52|^10.0|^11.0",
"illuminate/view": "^9.52|^10.0|^11.0",
"spatie/laravel-package-tools": "^1.0"
},
"require-dev": {
"laravel/pint": "^1.10",
"orchestra/testbench": "^7.25|^8.0|^9.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Empuxa\\TotpLogin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Empuxa\\TotpLogin\\Tests\\": "tests"
}
},
"scripts": {
"pint": "./vendor/bin/pint",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Empuxa\\TotpLogin\\TotpLoginServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}