generated from Firehed/php-library-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
72 lines (72 loc) · 1.76 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
{
"name": "firehed/webauthn",
"description": "Support passkeys and Web Authentication",
"keywords": [
"passkeys",
"webauthn",
"web authentication",
"u2f",
"fido",
"mfa",
"2fa"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Eric Stern",
"email": "[email protected]"
}
],
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"funding": [
{ "type": "github", "url": "https://github.com/sponsors/Firehed" },
{ "type": "other", "url": "https://www.snapauth.app" }
],
"autoload": {
"psr-4": {
"Firehed\\WebAuthn\\": "src"
}
},
"autoload-dev": {
"files": [
"examples/functions.php"
],
"psr-4": {
"Firehed\\WebAuthn\\": "tests"
}
},
"require": {
"php": "^8.1",
"ext-gmp": "*",
"ext-hash": "*",
"ext-openssl": "*",
"firehed/cbor": "^0.1.0",
"sop/asn1": "^4.1"
},
"require-dev": {
"maglnet/composer-require-checker": "^4.1",
"mheap/phpunit-github-actions-printer": "^1.5",
"nikic/php-parser": "^4.14",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.5"
},
"scripts": {
"test": [
"@phpunit",
"@phpstan",
"@phpcs"
],
"autofix": "phpcbf",
"phpunit": "phpunit",
"phpstan": "phpstan analyse",
"phpstan-baseline": "phpstan analyse --generate-baseline",
"phpcs": "phpcs"
}
}