summaryrefslogtreecommitdiffstats
path: root/src/Http/composer.json
blob: 5802f3e213752e4f093e49faf6135b0af7c74416 (plain)
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
{
    "name": "cakephp/http",
    "description": "CakePHP HTTP client and PSR7/15 middleware libraries",
    "type": "library",
    "keywords": [
        "cakephp",
        "http",
        "psr7",
        "psr15"
    ],
    "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": ">=7.2.0",
        "cakephp/core": "^4.0",
        "cakephp/event": "^4.0",
        "cakephp/utility": "^4.0",
        "composer/ca-bundle": "^1.2",
        "psr/http-client": "^1.0",
        "psr/http-server-handler": "^1.0",
        "psr/http-server-middleware": "^1.0",
        "laminas/laminas-diactoros": "^2.1",
        "laminas/laminas-httphandlerrunner": "^1.0"
    },
    "provide": {
        "psr/http-client-implementation": "^1.0"
    },
    "suggest": {
        "cakephp/cache": "To use cache session storage",
        "cakephp/orm": "To use database session storage"
    },
    "autoload": {
        "psr-4": {
            "Cake\\Http\\": "."
        }
    }
}