From 05c6d1c160c426b96abad3aff93200c139010e50 Mon Sep 17 00:00:00 2001 From: Sam Partington Date: Thu, 1 Mar 2018 12:52:32 +0000 Subject: [PATCH] Make symfony/templating required for regular install, not just dev In Symfony 4, it won't come in with the framework bundle (see discussion on https://github.com/whiteoctober/BreadcrumbsBundle/pull/82#discussion_r170304176) --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 84140a8..4bcdb7c 100644 --- a/composer.json +++ b/composer.json @@ -13,11 +13,11 @@ ], "require": { "php": ">=5.3.2", - "symfony/framework-bundle": "~2.0|~3.0|^4.0" + "symfony/framework-bundle": "~2.0|~3.0|^4.0", + "symfony/templating": "^3.4|^4.0" }, "require-dev": { "phpunit/phpunit": "^6.4", - "symfony/templating": "^3.4|^4.0", "symfony/browser-kit": "~2.7|~3.0|^4.0" }, "autoload": {