forked from web-auth/webauthn-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
119 lines (119 loc) · 4.84 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
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
{
"name": "web-auth/webauthn-framework",
"description": "FIDO2/Webauthn library for PHP and Symfony Bundle.",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [],
"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"
}
],
"scripts": {
"test:unit": "./vendor/bin/phpunit --color",
"test:typing": "./vendor/bin/phpstan analyse",
"test:syntax": "./vendor/bin/php-cs-fixer fix --dry-run --stop-on-violation --using-cache=no",
"test:mutations": "./vendor/bin/infection --logger-github --git-diff-filter=AM -s --threads=$(nproc) --min-msi=0 --min-covered-msi=0"
},
"autoload": {
"psr-4": {
"Cose\\": "src/cose/src/",
"Webauthn\\": "src/webauthn/src/",
"Webauthn\\Bundle\\": "src/symfony/src/",
"Webauthn\\MetadataService\\": "src/metadata-service/src/",
"Webauthn\\ConformanceToolset\\": "src/conformance-toolset/src/"
}
},
"autoload-dev": {
"psr-4": {
"Cose\\Tests\\Unit\\": "tests/cose/unit/",
"Webauthn\\Tests\\": [
"tests/framework",
"tests/library/"
],
"Webauthn\\Tests\\Functional\\": "tests/library/",
"Webauthn\\Bundle\\Tests\\Functional\\": "tests/symfony/functional/",
"Webauthn\\Tests\\MetadataService\\Unit\\": "tests/MDS/unit/"
}
},
"require": {
"php": ">=7.2",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"beberlei/assert": "^3.2",
"fgrosse/phpasn1": "^2.1",
"league/uri": "^6.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/log": "^1.1",
"ramsey/uuid": "^3.8|^4.0",
"spomky-labs/base64url": "^2.0",
"spomky-labs/cbor-bundle": "^2.0",
"spomky-labs/cbor-php": "^1.0|^2.0",
"symfony/config": "^4.4|^5.0",
"symfony/dependency-injection": "^4.4|^5.0",
"symfony/framework-bundle": "^4.4|^5.0",
"symfony/process": "^3.0|^4.0|^5.0",
"symfony/psr-http-message-bridge": "^1.2|^2.0",
"thecodingmachine/safe": "^1.1",
"web-token/jwt-signature": "^2.0.9"
},
"replace": {
"web-auth/cose-lib": "self.version",
"web-auth/webauthn-lib": "self.version",
"web-auth/conformance-toolset": "self.version",
"web-auth/metadata-service": "self.version",
"web-auth/webauthn-symfony-bundle": "self.version"
},
"config": {
"sort-packages": true
},
"suggest": {
"psr/log-implementation": "Recommended to receive logs from the library",
"symfony/security-bundle": "Symfony firewall using a JSON API (perfect for script applications)",
"web-token/jwt-key-mgmt": "Mandatory for fetching Metadata Statement from distant sources",
"web-token/jwt-signature-algorithm-rsa": "Mandatory for the AndroidSafetyNet Attestation Statement support",
"web-token/jwt-signature-algorithm-ecdsa": "Mandatory for fetching Metadata Statement from distant sources",
"web-token/jwt-signature-algorithm-eddsa": "Recommended for the AndroidSafetyNet Attestation Statement support"
},
"require-dev": {
"doctrine/annotations": "^1.7",
"doctrine/dbal": "^2.9|^3.0",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "^2.6",
"friendsofphp/php-cs-fixer": "^3.0",
"infection/infection": ">=0.15|<0.24",
"monolog/monolog": "^2.0",
"nyholm/psr7": "^1.1",
"php-http/curl-client": "^2.0",
"php-http/mock-client": "^1.3",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-beberlei-assert": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^8.0||^9.0",
"symfony/browser-kit": "^4.4|^5.0",
"symfony/http-client": "^4.4|^5.0",
"symfony/monolog-bundle": "^3.5",
"symfony/phpunit-bridge": "^5.1",
"symfony/security-bundle": "^4.4|^5.0",
"symfony/serializer": "^4.4|^5.0",
"symfony/translation": "^4.4|^5.0",
"symfony/validator": "^4.4|^5.0",
"symfony/var-dumper": "^4.4|^5.0",
"symfony/yaml": "^4.4|^5.0",
"thecodingmachine/phpstan-safe-rule": "^1.0",
"web-token/jwt-key-mgmt": "^2.0.9",
"web-token/jwt-signature-algorithm-ecdsa": "^2.0.9",
"web-token/jwt-signature-algorithm-eddsa": "^2.0.9",
"web-token/jwt-signature-algorithm-rsa": "^2.0.9"
}
}