-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
70 lines (70 loc) · 1.88 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
{
"name": "wildwolf/two-factor-provider-webauthn",
"type": "wordpress-plugin",
"description": "WebAuthn provider for Two Factor WordPress plugin",
"autoload": {
"classmap": [
"inc/"
]
},
"require": {
"php": "^8.0.0",
"composer/installers": "^2.0",
"cweagans/composer-patches": "^1.7",
"madwizard/webauthn": "^0.10.0",
"typisttech/imposter-plugin": "^0.6.2",
"wildwolf/singleton-trait": "^1.0"
},
"require-dev": {
"automattic/vipwpcs": "^3.0",
"johnpbloch/wordpress-core": "^6.0",
"php-stubs/wordpress-stubs": "^6.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpunit/php-code-coverage": "^9.2",
"vimeo/psalm": "^5.0",
"wildwolf/wordpress-test-library-stubs": "^6.0",
"wp-cli/i18n-command": "^2.2",
"wp-phpunit/wp-phpunit": "^6.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"composer/installers": true,
"typisttech/imposter-plugin": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "8.0"
},
"optimize-autoloader": true,
"classmap-authoritative": true,
"autoloader-suffix": "WWTFWA"
},
"extra": {
"imposter": {
"namespace": "WildWolf\\WordPress\\TwoFactorWebAuthn\\Vendor",
"excludes": [
"cweagans/composer-patches",
"wildwolf/singleton-trait"
]
},
"patches": {
"madwizard/webauthn": {
"Fix interoperability with imposter": "patches/webauthn.patch",
"Fix client extension verification (GH-295)": "patches/client-extensions.patch",
"Fix EdDSA keys/improve YubiKey support": "patches/gh-541.patch",
"Fix Firefox iCloud support": "patches/webauthn-icloud.patch"
},
"guzzlehttp/guzzle": {
"Fix namespace in check": "patches/guzzle.patch"
}
}
},
"scripts": {
"phpcs": "phpcs",
"phpcs:fix": "phpcbf",
"psalm": "psalm --long-progress --no-cache"
}
}