Skip to content

Commit b164db5

Browse files
minor #28044 [DoctrineBridge] allow dev versions of Doctrine again (nicolas-grekas)
This PR was merged into the 3.4 branch. Discussion ---------- [DoctrineBridge] allow dev versions of Doctrine again | Q | A | ------------- | --- | Branch? | 3.4 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - I don't expect this to be green yet, but let's see progress on Doctrine side. Submitted against 4.0 for now, but should be merged on 3.4 when green. Commits ------- 83dcbe9 [DoctrineBridge] allow dev versions of Doctrine again
2 parents 9d7d3e7 + 83dcbe9 commit b164db5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"require": {
1919
"php": "^5.5.9|>=7.0.8",
2020
"ext-xml": "*",
21-
"doctrine/common": "~2.4@stable",
21+
"doctrine/common": "~2.4",
2222
"fig/link-util": "^1.0",
2323
"twig/twig": "^1.35|^2.4.4",
2424
"psr/cache": "~1.0",
@@ -92,7 +92,7 @@
9292
"doctrine/cache": "~1.6",
9393
"doctrine/data-fixtures": "1.0.*",
9494
"doctrine/dbal": "~2.4",
95-
"doctrine/orm": "~2.4,>=2.4.5,<=2.7.0",
95+
"doctrine/orm": "~2.4,>=2.4.5",
9696
"doctrine/doctrine-bundle": "~1.4",
9797
"monolog/monolog": "~1.11",
9898
"ocramius/proxy-manager": "~0.4|~1.0|~2.0",

src/Symfony/Bridge/Doctrine/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
],
1818
"require": {
1919
"php": "^5.5.9|>=7.0.8",
20-
"doctrine/common": "~2.4@stable",
20+
"doctrine/common": "~2.4",
2121
"symfony/polyfill-ctype": "~1.8",
2222
"symfony/polyfill-mbstring": "~1.0"
2323
},

0 commit comments

Comments
 (0)