-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 2.09 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 2.09 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
{
"name": "cakephp/http",
"description": "CakePHP HTTP client and PSR-7, PSR-15, PSR-17, PSR-18 compliant libraries",
"type": "library",
"keywords": [
"cakephp",
"http",
"PSR-7",
"PSR-15",
"PSR-17",
"PSR-18"
],
"homepage": "https://cakephp.org",
"license": "MIT",
"authors": [
{
"name": "CakePHP Community",
"homepage": "https://github.com/cakephp/http/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/cakephp/cakephp/issues",
"forum": "https://stackoverflow.com/tags/cakephp",
"irc": "irc://irc.freenode.org/cakephp",
"source": "https://github.com/cakephp/http"
},
"require": {
"php": ">=8.2",
"cakephp/core": "^5.3.0",
"cakephp/event": "^5.3.0",
"cakephp/utility": "^5.3.0",
"composer/ca-bundle": "^1.5",
"psr/http-client": "^1.0.2",
"psr/http-factory": "^1.1",
"psr/http-message": "^1.1 || ^2.0",
"psr/http-server-handler": "^1.0.2",
"psr/http-server-middleware": "^1.0.2",
"laminas/laminas-diactoros": "^3.8",
"laminas/laminas-httphandlerrunner": "^2.6"
},
"require-dev": {
"cakephp/cache": "^5.3.0",
"cakephp/console": "^5.3.0",
"cakephp/orm": "^5.3.0",
"cakephp/i18n": "^5.3.0",
"paragonie/csp-builder": "^3.0"
},
"autoload": {
"psr-4": {
"Cake\\Http\\": "."
}
},
"provide": {
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.1",
"psr/http-server-handler-implementation": "^1.0",
"psr/http-server-middleware-implementation": "^1.0"
},
"suggest": {
"cakephp/cache": "To use cache session storage",
"cakephp/orm": "To use database session storage",
"paragonie/csp-builder": "To use CspMiddleware"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-5.next": "5.4.x-dev"
}
}
}