From 737167e82afaf37a9f9afccb7ae4265a53f375a0 Mon Sep 17 00:00:00 2001 From: gfaust-qb Date: Thu, 1 Jun 2017 17:04:44 +0200 Subject: [PATCH] Make zf1 optional Make zf1 or zend-controller optional in case of having it already. --- composer.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 7143314..0e93134 100644 --- a/composer.json +++ b/composer.json @@ -10,10 +10,13 @@ } }, "require": { - "mnapoli/php-di": "~4.0", - "zendframework/zendframework1": "1.12.*" + "mnapoli/php-di": "~4.0" }, "require-dev": { "phpunit/phpunit": "^3.7" + }, + "suggest": { + "zendframework/zendframework1": "The complete Zend Framework 1", + "zf1/zend-controller": "The Zend Controller package only" } }