From acd2c335957a0bc2377367c0547a50f4eb05f1a2 Mon Sep 17 00:00:00 2001 From: David Zuelke Date: Mon, 19 Jan 2015 16:26:01 -0800 Subject: [PATCH] Prevent doctrine/dbal 2.5 from installing Currently, an incompatibility between ORM 2.4 and DBAL 2.5 causes the post-install-cmd steps to fail in the prod env. Until a fix is out, it's best to stick to 2.4 for both, so a standard edition project deploys successfully. --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 9adf0e0758..1df1ed2333 100644 --- a/composer.json +++ b/composer.json @@ -9,7 +9,8 @@ "require": { "php": ">=5.3.3", "symfony/symfony": "2.3.*", - "doctrine/orm": "~2.2,>=2.2.3", + "doctrine/orm": "~2.2,>=2.2.3,<2.5", + "doctrine/dbal": "<2.5", "doctrine/doctrine-bundle": "1.2.*", "twig/extensions": "1.0.*", "symfony/assetic-bundle": "2.3.*",