diff options
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..fa2e8bf --- /dev/null +++ b/composer.json @@ -0,0 +1,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" + } + ] + } +} |
