diff options
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/composer.json b/composer.json index 9e7fd3c..015fedf 100644 --- a/composer.json +++ b/composer.json @@ -1,13 +1,22 @@ { "name": "remi/xpass", "type": "php-ext", - "license": "PHP-3.01", + "license": "BSD-3-Clause", "description": "Extended password extension", "require": { "php": ">= 8.0.0" }, "php-ext": { "extension-name": "xpass", - "configure-options": [] + "configure-options": [ + { + "name": "enable-xpass", + "description": "Enable xpass support" + }, { + "name": "with-xpass-dlopen", + "description": "dlopen libcrypt library at runtime (workaround for MUSL)", + "needs-value": true + } + ] } } |
