summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 227f908a2c2412563030e73edb2a78e5ea502c29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
    "name": "bsdiff/bsdiff",
    "type": "php-ext",
    "license": "PHP-3.01",
    "description": "A PHP extension to build and apply patches to binary files.",
    "require": {
        "php": ">=7.2.0"
    },
    "php-ext": {
        "extension-name": "bsdiff",
        "configure-options": [
            {
                "name": "enable-bsdiff",
                "description": "Enable bsdiff support"
            },
            {
                "name": "with-bz2",
                "description": "BZip2 installation prefix",
                "needs-value": true
            }
        ]
    }
}