diff options
author | Jonathan Campbell <healsdata@gmail.com> | 2014-10-30 16:45:05 -0400 |
---|---|---|
committer | Jonathan Campbell <jon@healsdata.com> | 2014-10-30 17:06:23 -0400 |
commit | c1de69e417fdb642c17300310b97ff98c882c591 (patch) | |
tree | b55e383c8221fc9a5f78ac31974b647bf58cfa80 | |
parent | f9d9f2b5dbd35baaf2057251ee1c4be5a782a48a (diff) | |
download | zetacomponents-graph-c1de69e417fdb642c17300310b97ff98c882c591.zip zetacomponents-graph-c1de69e417fdb642c17300310b97ff98c882c591.tar.gz |
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.
-rw-r--r-- | composer.json | 4 |
1 files changed, 3 insertions, 1 deletions
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." } } |