From c1de69e417fdb642c17300310b97ff98c882c591 Mon Sep 17 00:00:00 2001 From: Jonathan Campbell Date: Thu, 30 Oct 2014 16:45:05 -0400 Subject: Revert unnecessary require for the GD extension GD is only necessary for the GD Driver which is not the default driver. There's not reason to force all users to install the GD extension and so we can simply suggest that they include it if they want to use that driver. --- composer.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 628fb01..69aba52 100644 --- a/composer.json +++ b/composer.json @@ -51,10 +51,12 @@ "name": "zetacomponents/graph", "type": "library", "require": { - "ext-gd": "*", "zetacomponents/base": "~1.8" }, "require-dev": { "zetacomponents/unit-test": "*" + }, + "suggest": { + "ext-gd": "Used by the GD driver, one of the choices for generating bitmap images." } } -- cgit v1.1