From 20a0380f9340bfa9aac2a20049e180a4819bd882 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 28 Feb 2026 07:40:04 +0100 Subject: update to 2.3.0 --- composer.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 composer.json (limited to 'composer.json') 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 + } + ] + } +} -- cgit