diff options
| author | Remi Collet <remi@remirepo.net> | 2026-02-28 07:40:04 +0100 |
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2026-02-28 07:40:04 +0100 |
| commit | 20a0380f9340bfa9aac2a20049e180a4819bd882 (patch) | |
| tree | fc55ff8a1327935650bc38e24510f8eddfecf1aa /composer.json | |
| parent | 4bb5d61176104cb2c563241aee443c17d2b777cf (diff) | |
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..4e06337 --- /dev/null +++ b/composer.json @@ -0,0 +1,28 @@ +{ + "name": "orieg/judy", + "type": "php-ext", + "description": "PHP Judy implements sparse dynamic arrays (aka Judy Arrays).", + "license": "PHP-3.01", + "homepage": "https://github.com/orieg/php-judy", + "authors": [ + { + "name": "Nicolas Brousse", + "email": "nicolas@brousse.info", + "homepage": "https://nicolas.brousse.info", + "role": "Developer" + } + ], + "require": { + "php": ">=8.0.0" + }, + "php-ext": { + "extension-name": "judy", + "configure-options": [ + { + "name": "with-judy", + "description": "Specify the path to the libJudy installation prefix", + "needs-value": true + } + ] + } +} |
