Skip to content

Commit acd2c33

Browse files
committed
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.
1 parent d742a38 commit acd2c33

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"require": {
1010
"php": ">=5.3.3",
1111
"symfony/symfony": "2.3.*",
12-
"doctrine/orm": "~2.2,>=2.2.3",
12+
"doctrine/orm": "~2.2,>=2.2.3,<2.5",
13+
"doctrine/dbal": "<2.5",
1314
"doctrine/doctrine-bundle": "1.2.*",
1415
"twig/extensions": "1.0.*",
1516
"symfony/assetic-bundle": "2.3.*",

0 commit comments

Comments
 (0)