-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
112 lines (112 loc) · 4.18 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
{
"name": "snicco/http-routing",
"description": "The HTTP and routing component of the snicco framework",
"authors": [
{
"name": "Calvin Alkan",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-filter": "*",
"ext-json": "*",
"ext-mbstring": "*",
"nikic/fast-route": "1.3.0",
"psr/container": "^1.1",
"psr/http-factory": "^1.0.0",
"psr/http-message": "^1.0.0",
"psr/http-server-handler": "^1.0.0",
"psr/http-server-middleware": "^1.0.0",
"snicco/psr7-error-handler": "^1.10.1",
"snicco/str-arr": "^1.10.1",
"webimpress/safe-writer": "^2.2",
"webmozart/assert": "^1.10"
},
"require-dev": {
"phpunit/phpunit": "^9.5.13",
"pimple/pimple": "^3.5",
"snicco/http-routing-testing": "^1.10.1"
},
"suggest": {
"nyholm/psr7": "To use as a fast PSR7 implementation."
},
"autoload": {
"psr-4": {
"Snicco\\Component\\HttpRouting\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Snicco\\Component\\HttpRouting\\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/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/better-wp-api": "<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/wp-nonce-middleware": "<1.10.1",
"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"
},
"license": "LGPL-3.0-only",
"minimum-stability": "dev",
"prefer-stable": true
}