forked from simplesamlphp/simplesamlphp-module-webauthn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
29 lines (29 loc) · 847 Bytes
/
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
{
"name": "simplesamlphp/simplesamlphp-module-webauthn",
"description": "A PHP implementation of a FIDO2 / WebAuthn authentication agent",
"type": "simplesamlphp-module",
"keywords": [ "idp", "fido2", "webauthn", "2fa" ],
"license": "LGPL-2.1-or-later",
"authors": [
{
"name": "Stefan Winter",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"SimpleSAML\\": "lib/SimpleSAML"
}
},
"require": {
"ext-pdo": "*",
"simplesamlphp/composer-module-installer": "~1.0",
"simplesamlphp/simplesamlphp": "*",
"spomky-labs/cbor-php": "*",
"web-auth/cose-lib": "*"
},
"require-dev": {
"lcobucci/jwt": "^3.3",
"simplesamlphp/simplesamlphp-test-framework": "0.0.11"
}
}