Skip to content

Commit e3f7968

Browse files
committed
vendor upgrade
1 parent 9893897 commit e3f7968

File tree

3 files changed

+22
-20
lines changed

3 files changed

+22
-20
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ and the possiblity to install only the needed vendors make the difference to the
3838
* [doctrine/common][11]: ^3.5
3939
* [doctrine/event-manager][12]: ^2.0.1
4040
* [psr/container][13]: ^1.1.2|^2.0.2
41-
* [symfony/cache][14]: ^5.4.46|^6.4.24|^7.3.2
42-
* [symfony/console][14]: ^5.4.47|^6.4.24|^7.3.2
41+
* [symfony/cache][14]: ^5.4.46|^6.4.27|^7.3.5
42+
* [symfony/console][14]: ^5.4.47|^6.4.27|^7.3.5
4343

4444
## Suggested
4545

46-
* [doctrine/dbal][20]: ^4.3.2
47-
* [doctrine/mongodb-odm][21]: ^2.11.2
48-
* [doctrine/orm][22]: ^3.5.1
49-
* [mongodb/mongodb][23]: ^1.21.1
46+
* [doctrine/dbal][20]: ^4.3.4
47+
* [doctrine/mongodb-odm][21]: ^2.14
48+
* [doctrine/orm][22]: ^3.5.3
49+
* [mongodb/mongodb][23]: ^1.21.2
5050

5151
## Installation
5252

composer.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -27,30 +27,30 @@
2727
"doctrine/common": "^3.5",
2828
"doctrine/event-manager": "^2.0.1",
2929
"psr/container": "^1.1.2|^2.0.2",
30-
"symfony/cache": "^5.4.46|^6.4.24|^7.3.2",
31-
"symfony/console": "^5.4.47|^6.4.24|^7.3.2"
30+
"symfony/cache": "^5.4.46|^6.4.27|^7.3.5",
31+
"symfony/console": "^5.4.47|^6.4.27|^7.3.5"
3232
},
3333
"require-dev": {
3434
"chubbyphp/chubbyphp-dev-helper": "dev-master",
3535
"chubbyphp/chubbyphp-laminas-config": "^1.4",
3636
"chubbyphp/chubbyphp-mock": "^2.0",
3737
"dg/bypass-finals": "^1.9",
38-
"doctrine/dbal": "^4.3.2",
39-
"doctrine/mongodb-odm": "^2.11.2",
40-
"doctrine/orm": "^3.5.1",
41-
"infection/infection": "^0.31.1",
42-
"mongodb/mongodb": "^1.21.1",
38+
"doctrine/dbal": "^4.3.4",
39+
"doctrine/mongodb-odm": "^2.14",
40+
"doctrine/orm": "^3.5.3",
41+
"infection/infection": "^0.31.9",
42+
"mongodb/mongodb": "^1.21.2",
4343
"php-coveralls/php-coveralls": "^2.8",
4444
"phpstan/extension-installer": "^1.4.3",
45-
"phpstan/phpstan": "^2.1.22",
46-
"phpunit/phpunit": "^11.5.28",
47-
"ramsey/uuid": "^4.9"
45+
"phpstan/phpstan": "^2.1.31",
46+
"phpunit/phpunit": "^11.5.42",
47+
"ramsey/uuid": "^4.9.1"
4848
},
4949
"conflict": {
50-
"doctrine/dbal": "<4.3.2 || >=5.0",
51-
"doctrine/mongodb-odm": "<2.11.2 || >=3.0",
52-
"doctrine/orm": "<3.5.1 || >=4.0",
53-
"mongodb/mongodb": "<1.21.1 || >=2.0"
50+
"doctrine/dbal": "<4.3.4 || >=5.0",
51+
"doctrine/mongodb-odm": "<2.14 || >=3.0",
52+
"doctrine/orm": "<3.5.3 || >=4.0",
53+
"mongodb/mongodb": "<1.21.2 || >=2.0"
5454
},
5555
"autoload": {
5656
"psr-4": {

tests/Unit/ServiceFactory/ODM/MongoDB/DocumentManagerFactoryTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ public function testInvoke(): void
4545
new WithReturn('getHydratorDir', [], '/tmp/doctrine/orm/hydrators'),
4646
new WithReturn('getHydratorNamespace', [], 'DoctrineMongoDBODMHydrator'),
4747
new WithReturn('getAutoGenerateHydratorClasses', [], Configuration::AUTOGENERATE_ALWAYS),
48+
new WithReturn('isNativeLazyObjectEnabled', [], false),
4849
new WithReturn('isLazyGhostObjectEnabled', [], true),
4950
new WithReturn('getProxyDir', [], '/tmp/doctrine/orm/proxies'),
5051
new WithReturn('getProxyNamespace', [], 'DoctrineMongoDBODMProxy'),
@@ -93,6 +94,7 @@ public function testCallStatic(): void
9394
new WithReturn('getHydratorDir', [], '/tmp/doctrine/orm/hydrators'),
9495
new WithReturn('getHydratorNamespace', [], 'DoctrineMongoDBODMHydrator'),
9596
new WithReturn('getAutoGenerateHydratorClasses', [], Configuration::AUTOGENERATE_ALWAYS),
97+
new WithReturn('isNativeLazyObjectEnabled', [], false),
9698
new WithReturn('isLazyGhostObjectEnabled', [], true),
9799
new WithReturn('getProxyDir', [], '/tmp/doctrine/orm/proxies'),
98100
new WithReturn('getProxyNamespace', [], 'DoctrineMongoDBODMProxy'),

0 commit comments

Comments
 (0)