-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
96 lines (96 loc) · 3.59 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
{
"name": "snicco/wp-nonce-middleware",
"license": "LGPL-3.0-only",
"authors": [
{
"name": "Calvin Alkan",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.0",
"snicco/better-wp-api": "^1.10.1",
"snicco/http-routing": "^1.10.1",
"snicco/psr7-error-handler": "^1.10.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5.13",
"snicco/http-routing-testing": "^1.10.1"
},
"autoload": {
"psr-4": {
"Snicco\\Middleware\\WPNonce\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Snicco\\Middleware\\WPNonce\\Tests\\": "tests"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"conflict": {
"snicco/testable-clock": "<1.10.1",
"snicco/signed-url": "<1.10.1",
"snicco/templating": "<1.10.1",
"snicco/psr7-error-handler": "<1.0.0",
"snicco/better-wpdb": "<1.10.1",
"snicco/str-arr": "<1.10.1",
"snicco/better-wp-hooks": "<1.10.1",
"snicco/event-dispatcher": "<1.10.1",
"snicco/eloquent": "<1.10.1",
"snicco/better-wp-mail": "<1.10.1",
"snicco/better-wp-cache": "<1.10.1",
"snicco/session": "<1.10.1",
"snicco/kernel": "<1.10.1",
"snicco/session-wp-bridge": "<1.10.1",
"snicco/session-psr16-bridge": "<1.10.1",
"snicco/blade-bridge": "<1.10.1",
"snicco/signed-url-psr16-bridge": "<1.10.1",
"snicco/illuminate-container-bridge": "<1.10.1",
"snicco/signed-url-psr15-bridge": "<1.10.1",
"snicco/pimple-bridge": "<1.10.1",
"snicco/no-robots-middleware": "<1.10.1",
"snicco/open-redirect-protection-middleware": "<1.10.1",
"snicco/wp-capapility-middleware": "<1.0.0",
"snicco/payload-middleware": "<1.10.1",
"snicco/default-headers-middleware": "<1.10.1",
"snicco/wp-auth-only-middleware": "<1.10.1",
"snicco/content-negotiation-middleware": "<1.10.1",
"snicco/redirect-middleware": "<1.10.1",
"snicco/must-match-route-middleware": "<1.10.1",
"snicco/method-override-middleware": "<1.10.1",
"snicco/share-cookies-middleware": "<1.10.1",
"snicco/https-only-middleware": "<1.10.1",
"snicco/guests-only-middleware": "<1.0.0",
"snicco/trailing-slash-middleware": "<1.10.1",
"snicco/testing-bundle": "<1.10.1",
"snicco/http-routing-bundle": "<1.10.1",
"snicco/debug-bundle": "<1.10.1",
"snicco/templating-bundle": "<1.10.1",
"snicco/better-wpdb-bundle": "<1.10.1",
"snicco/better-wp-hooks-bundle": "<1.10.1",
"snicco/blade-bundle": "<1.10.1",
"snicco/better-wp-mail-bundle": "<1.10.1",
"snicco/better-wp-cache-bundle": "<1.10.1",
"snicco/session-bundle": "<1.10.1",
"snicco/encryption-bundle": "<1.10.1",
"snicco/wp-guests-only-middleware": "<1.10.1",
"snicco/wp-capability-middleware": "<1.10.1",
"snicco/better-wp-mail-testing": "<1.10.1",
"snicco/session-testing": "<1.10.1",
"snicco/kernel-testing": "<1.10.1",
"snicco/signed-url-testing": "<1.10.1",
"snicco/http-routing-testing": "<1.10.1",
"snicco/event-dispatcher-testing": "<1.10.1",
"snicco/better-wp-cli": "<1.10.1",
"snicco/signed-url-wp-bridge": "<1.10.1",
"snicco/minimal-logger": "<1.10.1",
"snicco/better-wp-cli-testing": "<1.10.1"
},
"minimum-stability": "dev",
"prefer-stable": true
}