From f81a6b7729b6d8c6a9d6599e93544046b5d7e486 Mon Sep 17 00:00:00 2001 From: Oliver <1885435+kokspflanze@users.noreply.github.com> Date: Tue, 24 Feb 2026 22:12:42 +0100 Subject: [PATCH 1/2] allow PHP85 --- .github/workflows/coding-standards.yml | 2 +- .github/workflows/composer-lint.yml | 2 +- .github/workflows/continuous-integration.yml | 2 +- .github/workflows/phpstan.yml | 2 +- composer.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml index 0e55e906..e1257075 100644 --- a/.github/workflows/coding-standards.yml +++ b/.github/workflows/coding-standards.yml @@ -25,4 +25,4 @@ jobs: name: "Coding Standards" uses: "doctrine/.github/.github/workflows/coding-standards.yml@6.0.0" with: - php-version: "8.4" + php-version: "8.5" diff --git a/.github/workflows/composer-lint.yml b/.github/workflows/composer-lint.yml index 0b791ea1..01c2da13 100644 --- a/.github/workflows/composer-lint.yml +++ b/.github/workflows/composer-lint.yml @@ -19,4 +19,4 @@ jobs: name: "Composer Lint" uses: "doctrine/.github/.github/workflows/composer-lint.yml@6.0.0" with: - php-version: "8.4" + php-version: "8.5" diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 8ab1b788..894a6998 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -25,6 +25,6 @@ jobs: name: "PHPUnit" uses: "doctrine/.github/.github/workflows/continuous-integration.yml@6.0.0" with: - php-versions: '["8.1", "8.2", "8.3", "8.4"]' + php-versions: '["8.1", "8.2", "8.3", "8.4", "8.5"]' secrets: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index 17457e45..51a86003 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -25,4 +25,4 @@ jobs: name: "Static Analysis" uses: "doctrine/.github/.github/workflows/phpstan.yml@6.0.0" with: - php-version: "8.4" + php-version: "8.5" diff --git a/composer.json b/composer.json index 7d8f22a8..3b840ba7 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ ], "homepage": "https://www.doctrine-project.org/", "require": { - "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", + "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0", "composer-runtime-api": "^2.0.0", "composer/semver": "^3.0.0", "doctrine/annotations": "^2.0.0", From 2406624e41ce9b09b287be137e0dd5501cb2f697 Mon Sep 17 00:00:00 2001 From: Oliver <1885435+kokspflanze@users.noreply.github.com> Date: Tue, 24 Feb 2026 22:36:11 +0100 Subject: [PATCH 2/2] set doctrine/persistence to min v4 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 3b840ba7..0f44f72a 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ "doctrine/doctrine-laminas-hydrator": "^3.2.0", "doctrine/event-manager": "^2.0.0", "doctrine/inflector": "^2.0.6", - "doctrine/persistence": "^3.0.0", + "doctrine/persistence": "^4.0.0", "laminas/laminas-authentication": "^2.12.0", "laminas/laminas-cache": "^3.6.0", "laminas/laminas-cache-storage-adapter-filesystem": "^2.2.0",