summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 2049c93141b4ff1da73104b0e7a17957f188df36 (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
50
51
52
53
54
55
{
    "name": "m6w6/ext-http",
    "type": "php-ext",
    "license": "BSD-2-Clause",
    "description": "Extended HTTP support",
    "require": {
        "php": ">= 8.0.0",
        "ext-raphf": "*"
    },
    "php-ext": {
        "extension-name": "http",
        "configure-options": [
            {
                "name": "with-http-zlib-dir",
                "description": "where to find zlib",
                "needs-value": true
            },
            {
                "name": "with-http-libcurl-dir",
                "description": "where to find libcurl",
                "needs-value": true
            },
            {
                "name": "with-http-libevent-dir",
                "description": "where to find libevent",
                "needs-value": true
            },
            {
                "name": "with-http-libicu-dir",
                "description": "where to find libicu",
                "needs-value": true
            },
            {
                "name": "with-http-libidn2-dir",
                "description": "where to find libidn2",
                "needs-value": true
            },
            {
                "name": "with-http-libidn-dir",
                "description": "where to find libidn",
                "needs-value": true
            },
            {
                "name": "with-http-libidnkit2-dir",
                "description": "where to find libidnkit2",
                "needs-value": true
            },
            {
                "name": "with-http-libidnkit-dir",
                "description": "where to find libidnkit",
                "needs-value": true
            }
        ]
    }
}