From 91689a7961435400e6b1db3bc5bf35c8aa48e895 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Fri, 9 Dec 2016 07:11:54 +0100 Subject: [PATCH] add dependency on Twig Requiring a specific minimum version of the TwigBridge just to be sure that we end up with the required Twig version does not make much sense if can simply specify the required version instead (we do in fact depend on Twig in the WebProfilerBundle). --- src/Symfony/Bundle/WebProfilerBundle/composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/WebProfilerBundle/composer.json b/src/Symfony/Bundle/WebProfilerBundle/composer.json index a1de9a771b..8867a64eca 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/composer.json +++ b/src/Symfony/Bundle/WebProfilerBundle/composer.json @@ -19,7 +19,8 @@ "php": ">=5.3.9", "symfony/http-kernel": "~2.4", "symfony/routing": "~2.2", - "symfony/twig-bridge": "~2.7" + "symfony/twig-bridge": "~2.7", + "twig/twig": "~1.28|~2.0" }, "require-dev": { "symfony/config": "~2.2",