From 280c4a1d4430ce5a82b939dec2665a9a61e0a375 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"