Skip to content
This repository was archived by the owner on Nov 27, 2020. It is now read-only.

Commit cbf0b52

Browse files
committed
bug #774 Prevent doctrine/dbal 2.5 from installing (dzuelke)
This PR was merged into the 2.3 branch. Discussion ---------- 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. Commits ------- acd2c33 Prevent doctrine/dbal 2.5 from installing
2 parents 51e4c50 + acd2c33 commit cbf0b52

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
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)