From 6b01a1f1a7b43837eb607b9c50b2030fa95484b6 Mon Sep 17 00:00:00 2001 From: James Titcumb Date: Thu, 19 Sep 2024 09:16:01 +0100 Subject: [PATCH] Added a composer.json to enable support for PIE --- composer.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 236acbc..767f666 100644 --- a/composer.json +++ b/composer.json @@ -4,15 +4,16 @@ "license": "PHP-3.01", "description": "Bindings for the libmcrypt library.", "require": { - "php": ">=7.2" + "php": ">= 7.2.0, <= 8.6.0" }, "php-ext": { "priority": 20, + "extension-name": "mcrypt", "configure-options": [ { "name": "with-mcrypt", - "description": "libmcrypt prefix?", - "needs-value": false + "description": "Include mcrypt support", + "needs-value": true } ] }