summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json28
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
+ }
+ ]
+ }
+}