From 24c5a42e2fc2346b475aaf3647c084e42f7556de Mon Sep 17 00:00:00 2001 From: James Titcumb Date: Tue, 17 Sep 2024 22:09:01 +0100 Subject: [PATCH] Added a composer.json to enable support for PIE --- composer.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 00000000..6da20e0a --- /dev/null +++ b/composer.json @@ -0,0 +1,19 @@ +{ + "name": "imagick/imagick", + "type": "php-ext", + "license": "PHP-3.01", + "description": "The Imagick PHP extension", + "require": { + "php": ">= 5.4.0" + }, + "php-ext": { + "extension-name": "imagick", + "configure-options": [ + { + "name": "with-imagick", + "description": "Enables the imagick extension. DIR is the prefix to ImageMagick installation directory.", + "needs-value": true + } + ] + } +}