summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 6f683e62680f12cfbe30a3ab8a9013ab440789a6 (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": "cataphract/rar",
    "type": "php-ext",
    "description": "PHP extension for reading RAR archives using bundled unRAR library",
    "license": "PHP-3.01",
    "authors": [
        {
            "name": "Gustavo Lopes",
            "email": "cataphract@php.net",
            "role": "lead"
        },
        {
            "name": "Antony Dovgal",
            "email": "tony@daylessday.org",
            "role": "developer"
        }
    ],
    "require": {
        "php": "^7.0 || ^8.0"
    },
    "replace": {
        "ext-rar": "*"
    },
    "support": {
        "source": "https://github.com/cataphract/php-rar"
    },
    "php-ext": {
        "extension-name": "rar",
        "download-url-method": ["pre-packaged-binary", "composer-default"]
    }
}