Merge branch 'MDL-81713-main' of https://github.com/junpataleta/moodle
[moodle.git] / lib / webauthn / composer.json
blob1cf258e9a4a62e81f2a828b89ff72b62f4138a97
2     "name": "lbuchs/webauthn",
3     "description": "A simple PHP WebAuthn (FIDO2) server library",
4     "keywords": [
5         "webauthn", "authentication"
6     ],
7     "homepage": "https://github.com/lbuchs/webauthn",
8     "license": "MIT",
9     "authors": [
10         {
11             "name": "Lukas Buchs",
12             "role": "Developer"
13         }
14     ],
15     "require": {
16         "php" : ">=8.0.0"
17     },
18     "autoload": {
19         "psr-4": {
20             "lbuchs\\WebAuthn\\": "src"
21         }
22     }