summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: b775e560bdde9d1e744af6e01056be2717950c1c (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
{
    "name": "websupport-sk/pecl-memcache",
    "type": "php-ext",
    "license": "PHP-3.0",
    "description": "PHP Extension - Memcache module with support of newer PHP 7.x and PHP 8.x",
    "require": {
        "php": ">= 8.0.0"
    },
    "php-ext": {
        "extension-name": "memcache",
        "configure-options": [
            {
                "name": "enable-memcache",
                "description": "Enable memcache support"
            },
            {
                "name": "disable-memcache-session",
                "description": "Disable memcache session handler support"
            },
            {
                "name": "with-zlib-dir",
                "description": "Set the path to ZLIB install prefix.",
                "needs-value": true
            },
            {
                "name": "enable-debug",
                "description": "compile with debugging symbols"
            }
        ]
    }
}