Skip to content

Commit

Permalink
deps: prevent doctrine/orm 3.3.0 for now (#229)
Browse files Browse the repository at this point in the history
* deps: prevent `doctrine/orm` 3.3.0 for now

* bump phpunit

* turn of display errors
  • Loading branch information
priyadi authored Oct 29, 2024
1 parent 334feb7 commit 80bdcac
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# 0.18.1

* chore: add missing types
* deps: prevent `doctrine/orm` 3.3.0 for now

# 0.18.0

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"api-platform/core": "^3.2",
"doctrine/collections": "^2.2",
"doctrine/dbal": "^3.8 || ^4.0",
"doctrine/orm": "^2.19 || ^3.0",
"doctrine/orm": "^2.19 || ^3.0 <3.3",
"pagerfanta/core": "^4.0",
"pagerfanta/doctrine-collections-adapter": "^4.0",
"psr/container": "^2.0",
Expand All @@ -42,7 +42,7 @@
"phpstan/phpstan": "^1.10.66 || ^1.11",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^10.1",
"phpunit/phpunit": "^10.5",
"psalm/plugin-phpunit": "^0.18.4",
"psalm/plugin-symfony": "^5.1",
"psr/log": "^2.0 || ^3.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/rekapager-doctrine-orm-adapter/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"require": {
"php": "^8.2",
"doctrine/dbal": "^3.8 || ^4.0",
"doctrine/orm": "^2.19 || ^3.0",
"doctrine/orm": "^2.19 || ^3.0 <3.3",
"doctrine/collections": "^2.2",
"rekalogika/rekapager-adapter-common": "^0.18",
"rekalogika/rekapager-contracts": "^0.18",
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<php>
<ini
name="display_errors"
value="1" />
value="0" />
<ini
name="error_reporting"
value="-1" />
Expand Down

0 comments on commit 80bdcac

Please sign in to comment.