From a0f12dabc2aef2fd129967838b1294b860ddd6d3 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sun, 21 Jan 2018 23:35:21 +0100 Subject: composer: Add extension deps where easily possible mysql/psql is missing because composer can't do OR easily. Signed-off-by: Florian Pritz --- composer.json | 8 ++++++-- composer.lock | 11 ++++++++--- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 9c9bfe6bf..3caf61b32 100644 --- a/composer.json +++ b/composer.json @@ -9,12 +9,16 @@ "source": "https://github.com/Bluewind/filebin" }, "require": { - "php": ">=5.5" + "php": ">=5.5", + "ext-gd": "*", + "ext-exif": "*", + "ext-phar": "*" }, "suggest": { "paragonie/random_compat": "Provides better randomness in PHP 5.x" }, "require-dev": { - "phpunit/php-code-coverage": "^4 || ^5" + "phpunit/php-code-coverage": "^4 || ^5", + "ext-xdebug": "*" } } diff --git a/composer.lock b/composer.lock index 16bd4a4e5..b64749f56 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "content-hash": "53932bd9db5d52264df582f0589a127e", + "content-hash": "2668befb33d9b989434db0ab06fb68b7", "packages": [], "packages-dev": [ { @@ -392,7 +392,12 @@ "prefer-stable": false, "prefer-lowest": false, "platform": { - "php": ">=5.5" + "php": ">=5.5", + "ext-gd": "*", + "ext-exif": "*", + "ext-phar": "*" }, - "platform-dev": [] + "platform-dev": { + "ext-xdebug": "*" + } } -- cgit v1.2.3-24-g4f1b