-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.11 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
44
45
46
{
"name": "web-auth/u2f-lib",
"type": "library",
"license": "MIT",
"description": "FIDO U2F Support For PHP",
"keywords": ["FIDO", "U2F"],
"homepage": "https://github.com/web-auth",
"authors": [
{
"name": "Florent Morselli",
"homepage": "https://github.com/Spomky"
},
{
"name": "All contributors",
"homepage": "https://github.com/web-auth/u2f-lib/contributors"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"ext-openssl": "*",
"ext-mbstring": "*",
"spomky-labs/base64url": "^2.0",
"thecodingmachine/safe": "^0.1",
"beberlei/assert": "^3.0"
},
"autoload": {
"psr-4": {
"U2F\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"U2F\\Tests\\Unit\\": "tests/unit/"
}
},
"extra": {
"branch-alias": {
"v1.0": "1.0.x-dev",
"v1.1": "1.1.x-dev",
"v1.2": "1.2.x-dev",
"v2.0": "2.0.x-dev",
"v2.1": "2.1.x-dev"
}
}
}