Skip to content

Commit 7c796e0

Browse files
#4 Allow installing "doctrine/orm": ^3.0 using at least require "doctrine/orm": "^2.9 || ^3.0". Forbid "doctrine/dbal" 4 for now (as on "symfony/orm-pack" - symfony/orm-pack@266bae0#diff-d2ab9925cad7eac58e0ff4cc0d251a937ecf49e4b6bf57f8b95aab76648a9d34R7 ) using "doctrine/dbal": "^2.9 || ^3.0". Add "doctrine/common": "^3.0" and "doctrine/doctrine-migrations-bundle": "^3.2"
1 parent 0647542 commit 7c796e0

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ v2.0
66
* [#6](https://github.com/cleverage/doctrine-process-bundle/issues/6) Update services according to Symfony best practices. Services should not use autowiring or autoconfiguration. Instead, all services should be defined explicitly.
77
Services must be prefixed with the bundle alias instead of using fully qualified class names => `cleverage_doctrine_process`
88
* [#5](https://github.com/cleverage/doctrine-process-bundle/issues/5) Bump "doctrine/doctrine-bundle": "^2.5" according to Symfony versions supported by `cleverage/process-bundle`
9+
* [#4](https://github.com/cleverage/doctrine-process-bundle/issues/4) Allow installing "doctrine/orm": ^3.0 using at least require "doctrine/orm": "^2.9 || ^3.0".
10+
Forbid "doctrine/dbal" 4 for now (as on "symfony/orm-pack" - symfony/orm-pack@266bae0#diff-d2ab9925cad7eac58e0ff4cc0d251a937ecf49e4b6bf57f8b95aab76648a9d34R7 ) using "doctrine/dbal": "^2.9 || ^3.0".
11+
Add "doctrine/common": "^3.0" and "doctrine/doctrine-migrations-bundle": "^3.2"
12+
913

1014
### Changes
1115

composer.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,13 @@
4949
}
5050
},
5151
"require": {
52-
"php": ">=8.1",
53-
"cleverage/process-bundle": "dev-prepare-release",
54-
"doctrine/orm": "^2",
55-
"doctrine/doctrine-bundle": "^2.5"
52+
"php": ">=8.1",
53+
"cleverage/process-bundle": "dev-prepare-release",
54+
"doctrine/common": "^3.0",
55+
"doctrine/dbal": "^2.9 || ^3.0",
56+
"doctrine/doctrine-bundle": "^2.5",
57+
"doctrine/doctrine-migrations-bundle": "^3.2",
58+
"doctrine/orm": "^2.9 || ^3.0"
5659
},
5760
"require-dev": {
5861
"friendsofphp/php-cs-fixer": "*",

0 commit comments

Comments
 (0)