This repository was archived by the owner on Mar 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.36 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.36 KB
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
{
"name": "firehed/u2f",
"description": "A library providing U2F authentication",
"license": "MIT",
"keywords": [
"auth",
"authentication",
"mfa",
"security",
"u2f",
"webauthn",
"web authentication",
"webauthentication",
"yubico",
"yubikey"
],
"homepage": "https://github.com/Firehed/u2f-php",
"require": {
"php": ">=7.2",
"firehed/cbor": "^0.1"
},
"require-dev": {
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8.5 || ^9.0",
"squizlabs/php_codesniffer": "^3.2",
"phpstan/phpstan-phpunit": "^0.12"
},
"autoload": {
"psr-4": {
"Firehed\\U2F\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Firehed\\U2F\\": "tests/"
}
},
"authors": [
{
"name": "Eric Stern",
"email": "eric@ericstern.com"
}
],
"scripts": {
"test": [
"@phpunit",
"@phpstan",
"@phpcs"
],
"coverage": "phpunit --coverage-html build; open build/index.html",
"autofix": "phpcbf src lib tests db",
"phpunit": "phpunit",
"phpstan": "phpstan analyse --no-progress",
"phpcs": "phpcs"
}
}