-
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathcomposer.json
More file actions
120 lines (120 loc) · 4.32 KB
/
composer.json
File metadata and controls
120 lines (120 loc) · 4.32 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "web-auth/webauthn-framework",
"description": "FIDO2/Webauthn library for PHP and Symfony Bundle.",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"FIDO",
"FIDO2",
"webauthn",
"symfony",
"symfony-bundle",
"symfony-ux",
"bundle"
],
"homepage": "https://github.com/web-auth/webauthn-framework",
"authors": [
{
"name": "Florent Morselli",
"homepage": "https://github.com/Spomky"
},
{
"name": "All contributors",
"homepage": "https://github.com/web-auth/webauthn-framework/contributors"
}
],
"autoload": {
"psr-4": {
"Webauthn\\": "src/webauthn/src/",
"Webauthn\\Bundle\\": "src/symfony/src/",
"Webauthn\\Stimulus\\": "src/stimulus/src/"
}
},
"autoload-dev": {
"psr-4": {
"Webauthn\\Tests\\": [
"tests/framework",
"tests/library/"
],
"Webauthn\\Tests\\Bundle\\Functional\\": "tests/symfony/functional/",
"Webauthn\\Tests\\MetadataService\\": "tests/MDS/"
}
},
"require": {
"php": ">=8.2",
"ext-json": "*",
"ext-openssl": "*",
"paragonie/constant_time_encoding": "^2.6|^3.0",
"phpdocumentor/reflection-docblock": "^5.3|^6.0",
"psr/clock": "^1.0",
"psr/event-dispatcher": "^1.0",
"psr/log": "^1.0|^2.0|^3.0",
"spomky-labs/cbor-php": "^3.0",
"spomky-labs/pki-framework": "^1.0",
"symfony/clock": "^6.4|^7.0|^8.0",
"symfony/config": "^6.4|^7.0|^8.0",
"symfony/dependency-injection": "^6.4|^7.0|^8.0",
"symfony/deprecation-contracts": "^3.2",
"symfony/framework-bundle": "^6.4|^7.0|^8.0",
"symfony/http-client": "^6.4|^7.0|^8.0",
"symfony/property-access": "^6.4|^7.0|^8.0",
"symfony/property-info": "^6.4|^7.0|^8.0",
"symfony/security-bundle": "^6.4|^7.0|^8.0",
"symfony/security-core": "^6.4|^7.0|^8.0",
"symfony/security-http": "^6.4|^7.0|^8.0",
"symfony/serializer": "^6.4|^7.0|^8.0",
"symfony/service-contracts": "^3.0",
"symfony/uid": "^6.4|^7.0|^8.0",
"symfony/validator": "^6.4|^7.0|^8.0",
"web-auth/cose-lib": "^4.2.3"
},
"replace": {
"web-auth/webauthn-lib": "self.version",
"web-auth/metadata-service": "self.version",
"web-auth/webauthn-symfony-bundle": "self.version",
"web-auth/webauthn-stimulus": "self.version"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
}
},
"suggest": {
"psr/log-implementation": "Recommended to receive logs from the library",
"symfony/event-dispatcher": "Recommended to use dispatched events",
"web-token/jwt-library": "Mandatory for fetching Metadata Statement from distant sources",
"symfony/security-bundle": "Symfony firewall using a JSON API (perfect for script applications)"
},
"require-dev": {
"doctrine/dbal": "^3.8|^4.0",
"doctrine/doctrine-bundle": "^2.18.1|^3.0",
"doctrine/orm": "^2.14|^3.0",
"doctrine/persistence": "^3.1|^4.0",
"matthiasnoback/symfony-dependency-injection-test": "^5.1|^6.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.1",
"psr/http-message": "^2.0",
"roave/security-advisories": "dev-latest",
"symfony/asset": "^6.4|^7.0|^8.0",
"symfony/asset-mapper": "^6.4|^7.0|^8.0",
"symfony/browser-kit": "^6.4|^7.0|^8.0",
"symfony/doctrine-bridge": "^6.4|^7.0|^8.0",
"symfony/filesystem": "^6.4|^7.0|^8.0",
"symfony/finder": "^6.4|^7.0|^8.0",
"symfony/monolog-bundle": "^3.8 || ^4.0",
"symfony/twig-bundle": "^6.4|^7.0|^8.0",
"symfony/var-dumper": "^6.4|^7.0|^8.0",
"symfony/var-exporter": "^6.4|^7.0|^8.0",
"symfony/yaml": "^6.4|^7.0|^8.0",
"web-token/jwt-library": "^3.4|^4.0"
},
"extra": {
"thanks": {
"name": "web-auth/webauthn-framework",
"url": "https://github.com/web-auth/webauthn-framework"
}
}
}