-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
98 lines (98 loc) · 3.03 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"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": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"illuminate/support": "^9.0 || ^10.0 || ^11.0",
"phpdocumentor/reflection-docblock": "^5.3",
"psr/http-factory-implementation": "1.0",
"symfony/property-access": "^6.4 || ^7.0",
"symfony/property-info": "^6.4 || ^7.0",
"symfony/serializer": "^6.4 || ^7.0",
"web-auth/cose-lib": "^4.0",
"web-auth/webauthn-lib": "^4.8",
"web-token/jwt-library": "^3.0"
},
"conflict": {
"web-auth/webauthn-lib": "4.7.0"
},
"require-dev": {
"ext-sqlite3": "*",
"guzzlehttp/psr7": "^2.1",
"jschaedl/composer-git-hooks": "^4.0",
"larastan/larastan": "^2.0",
"laravel/legacy-factories": "^1.0",
"laravel/pint": "^1.13",
"ocramius/package-versions": "^2.0",
"orchestra/testbench": "^7.0 || ^8.0 || ^9.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^9.5 || ^10.0 || ^11.0",
"psalm/plugin-laravel": "^2.8"
},
"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"
},
"autoload": {
"psr-4": {
"LaravelWebauthn\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"LaravelWebauthn\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"LaravelWebauthn\\WebauthnServiceProvider"
]
},
"hooks": {
"config": {
"stop-on-failure": [
"pre-commit"
]
},
"pre-commit": [
"files=$(git diff --staged --name-only);\"$(dirname \"$0\")/../../vendor/bin/pint\" $files; git add $files"
]
}
},
"scripts": {
"cghooks": "vendor/bin/cghooks",
"post-install-cmd": "cghooks add --ignore-lock",
"post-update-cmd": "cghooks update"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}