From 7a5d99cd4fea9d629de2aedd07a3252b9ac28b9b Mon Sep 17 00:00:00 2001 From: "Barry vd. Heuvel" Date: Thu, 8 Aug 2013 18:25:04 +0200 Subject: [PATCH] Markdown is not required, so move to suggest Markdown is only used once and a check is in place to see if the markdown classes exists. So perhaps it is better to move this to suggest instead of require, so the people who don't need it, don't have to download it. --- composer.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index ad118ca..9d90238 100644 --- a/composer.json +++ b/composer.json @@ -6,8 +6,7 @@ {"name": "Mike van Riel", "email": "mike.vanriel@naenius.com"} ], "require": { - "php": ">=5.3.3", - "dflydev/markdown": "1.0.*" + "php": ">=5.3.3" }, "autoload": { "psr-0": {"phpDocumentor": ["src/"]} @@ -15,6 +14,9 @@ "require-dev": { "phpunit/phpunit": "3.7.*@stable" }, + "suggest": { + "dflydev/markdown": "1.0.*" + }, "extra": { "branch-alias": { "dev-master": "2.0.x-dev"