forked from asbiin/laravel-webauthn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
80 lines (80 loc) · 2.66 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "asbiin/laravel-webauthn",
"description": "Laravel Webauthn support",
"keywords": [
"laravel",
"php",
"webauthn",
"security"
],
"type": "library",
"license": "MIT",
"support": {
"issues": "https://github.com/asbiin/laravel-webauthn/issues",
"source": "https://github.com/asbiin/laravel-webauthn"
},
"authors": [
{
"name": "Alexis Saettler",
"email": "alexis@saettler.org"
}
],
"require": {
"php": ">=8.1",
"illuminate/support": "^9.0 || ^10.0",
"psr/http-factory-implementation": "1.0",
"web-auth/cose-lib": "^4.0",
"web-auth/webauthn-lib": "^4.0",
"web-token/jwt-signature": "^3.0"
},
"conflict": {
"web-auth/webauthn-lib": "4.7.0"
},
"require-dev": {
"ext-sqlite3": "*",
"guzzlehttp/psr7": "^2.1",
"laravel/legacy-factories": "^1.0",
"nunomaduro/larastan": "^2.0",
"ocramius/package-versions": "^2.0",
"orchestra/testbench": "^7.0 || ^8.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^9.5 || ^10.0"
},
"suggest": {
"guzzlehttp/psr7": "To provide a psr/http-factory-implementation implementation",
"symfony/psr-http-message-bridge": "To find a psr/http-factory-implementation implementation",
"php-http/discovery": "To find a psr/http-factory-implementation implementation",
"psr/http-client-implementation": "Required for the AndroidSafetyNet Attestation Statement support",
"web-token/jwt-signature-algorithm-rsa": "Required for the AndroidSafetyNet Attestation Statement support",
"web-token/jwt-signature-algorithm-ecdsa": "Required for the AndroidSafetyNet Attestation Statement support",
"web-token/jwt-signature-algorithm-eddsa": "Required for the AndroidSafetyNet Attestation Statement support",
"web-token/jwt-key-mgmt": "Required for the AndroidSafetyNet Attestation Statement support"
},
"autoload": {
"psr-4": {
"LaravelWebauthn\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"LaravelWebauthn\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"LaravelWebauthn\\WebauthnServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}