-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.01 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
{
"name": "codebarista/nova-webauthn",
"description": "Authenticate Nova users with Passkeys.",
"keywords": [
"laravel",
"nova",
"webauthn",
"faceid",
"touchid",
"passkey"
],
"license": "MIT",
"authors": [
{
"name": "Ralf Langebrake",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"laragear/webauthn": "^3.0",
"laravel/nova": "^4.0|^5.0"
},
"autoload": {
"psr-4": {
"Codebarista\\NovaWebauthn\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Codebarista\\NovaWebauthn\\ToolServiceProvider"
]
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}