-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
43 lines (43 loc) · 1.33 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
{
"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": "stefan.winter@restena.lu"
}
],
"autoload": {
"psr-4": {
"SimpleSAML\\Module\\webauthn\\": "src/"
}
},
"require": {
"php": "^8.1",
"ext-date": "*",
"ext-hash": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"simplesamlphp/assert": "^1.2.0",
"simplesamlphp/simplesamlphp": "^2.1.0",
"spomky-labs/cbor-php": "^3.0",
"spomky-labs/pki-framework": "^1.0",
"symfony/http-foundation": "^6.4",
"web-auth/cose-lib": "^4.0"
},
"require-dev": {
"simplesamlphp/simplesamlphp-test-framework": "^1.7.9"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"simplesamlphp/composer-module-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"simplesamlphp/composer-xmlprovider-installer": true
}
}
}