generated from rawilk/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
76 lines (76 loc) · 2.39 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
{
"name": "rawilk/laravel-webauthn",
"description": "Add webauthn functionality to Laravel",
"keywords": [
"rawilk",
"laravel",
"webauthn"
],
"homepage": "https://github.com/rawilk/laravel-webauthn",
"license": "MIT",
"authors": [
{
"name": "Randall Wilk",
"email": "[email protected]",
"homepage": "https://randallwilk.dev",
"role": "Developer"
}
],
"require": {
"php": "^8.1|^8.2",
"illuminate/contracts": "^9.12|^10.0",
"nyholm/psr7": "^1.5",
"spatie/laravel-package-tools": "^1.9",
"symfony/psr-http-message-bridge": "^2.1",
"web-auth/webauthn-lib": "^4.0"
},
"require-dev": {
"laravel/pint": "^1.5",
"nunomaduro/collision": "^6.0",
"orchestra/testbench": "^7.0|^8.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
"pestphp/pest-plugin-parallel": "^1.2",
"spatie/laravel-ray": "^1.26"
},
"autoload": {
"psr-4": {
"Rawilk\\Webauthn\\": "src",
"Rawilk\\Webauthn\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Rawilk\\Webauthn\\Tests\\": "tests"
}
},
"suggest": {
"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"
},
"scripts": {
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
"test": "vendor/bin/pest -p",
"format": "vendor/bin/pint --dirty"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Rawilk\\Webauthn\\WebauthnServiceProvider"
],
"aliases": {
"Webauthn": "Rawilk\\Webauthn\\Facades\\Webauthn"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}