moodle/lib/webauthn/composer.json
Stevani Andolo 63d8cfcf87 MDL-78509 lib_webauthn: Moved webauthn to lib
It was suggested to move the WebAuthn library form
admin/tool/mfa/webauthn/.extlib to lib/webauthn
2023-08-29 11:06:44 +08:00

24 lines
494 B
JSON

{
"name": "lbuchs/webauthn",
"description": "A simple PHP WebAuthn (FIDO2) server library",
"keywords": [
"webauthn", "authentication"
],
"homepage": "https://github.com/lbuchs/webauthn",
"license": "MIT",
"authors": [
{
"name": "Lukas Buchs",
"role": "Developer"
}
],
"require": {
"php" : ">=8.0.0"
},
"autoload": {
"psr-4": {
"lbuchs\\WebAuthn\\": "src"
}
}
}