From 4dadc41576531d0f35b166b07007b5085210b237 Mon Sep 17 00:00:00 2001 From: Michael Babker Date: Mon, 8 Jul 2019 15:41:55 -0500 Subject: [PATCH] Specify Twig version constraints After f526d3036616529a7c1be81e5ddea5af5b4fd331 the form layout is not compatible with older versions of Twig, the bundle should correctly advertise this. --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 21e1176..be9563c 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,8 @@ "symfony/form": "^2.8 || ^3.0 || ^4.0", "symfony/framework-bundle": "^2.8 || ^3.0 || ^4.0", "symfony/security-bundle": "^2.8 || ^3.0 || ^4.0", - "symfony/validator": "^2.8 || ^3.0 || ^4.0" + "symfony/validator": "^2.8 || ^3.0 || ^4.0", + "twig/twig": "^1.40 || ^2.9" }, "require-dev": { "phpunit/phpunit": "^5 || ^6 || ^7"