summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: fa2e8bf28da05931cc2a7976707539d24e33d3ff (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": "pecl/oauth",
    "type": "php-ext",
    "description": "OAuth 1.0 consumer and provider extension",
    "license": "BSD-3-Clause",
    "require": {
        "php": ">=7.1.0",
        "ext-hash": "*"
    },
    "php-ext": {
        "extension-name": "oauth",
        "configure-options": [
            {
                "name": "enable-oauth",
                "description": "Include oauth support"
            },
            {
                "name": "without-curl",
                "description": "Ignore presence of cURL and disable it"
            }
        ]
    }
}