From 06ec65c6c77ca73541b0d25ab88042c56fcdde7a Mon Sep 17 00:00:00 2001 From: Rudolph Gottesheim Date: Tue, 13 Dec 2022 16:05:47 +0100 Subject: [PATCH 1/3] PHP 8.2 support --- .github/workflows/coding-standards.yml | 2 +- .github/workflows/composer-lint.yml | 2 +- .github/workflows/continuous-integration.yml | 1 + .github/workflows/static-analysis.yml | 2 +- composer.json | 4 ++-- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml index 7e5d0a7..d2f0a64 100644 --- a/.github/workflows/coding-standards.yml +++ b/.github/workflows/coding-standards.yml @@ -13,4 +13,4 @@ jobs: name: "Coding Standards" uses: "doctrine/.github/.github/workflows/coding-standards.yml@2.1.0" with: - php-version: '8.1' + php-version: '8.2' diff --git a/.github/workflows/composer-lint.yml b/.github/workflows/composer-lint.yml index 3aa3dd8..a1dcff9 100644 --- a/.github/workflows/composer-lint.yml +++ b/.github/workflows/composer-lint.yml @@ -17,4 +17,4 @@ jobs: name: "Composer Lint" uses: "doctrine/.github/.github/workflows/composer-lint.yml@2.1.0" with: - php-version: "8.1" + php-version: "8.2" diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index f0f3505..5246e18 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -19,6 +19,7 @@ jobs: - "7.4" - "8.0" - "8.1" + - "8.2" dependencies: - "highest" include: diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 24a9871..a7b9498 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -13,4 +13,4 @@ jobs: name: "Static Analysis" uses: "doctrine/.github/.github/workflows/static-analysis.yml@2.1.0" with: - php-version: '8.1' + php-version: '8.2' diff --git a/composer.json b/composer.json index 55fec97..9212260 100644 --- a/composer.json +++ b/composer.json @@ -45,10 +45,10 @@ ], "homepage": "https://www.doctrine-project.org/", "require": { - "php": "^7.4 || ~8.0.0 || ~8.1.0", + "php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0", "ext-mongodb": "*", "doctrine/doctrine-laminas-hydrator": "^3.1.0", - "doctrine/doctrine-module": "^5.2.1", + "doctrine/doctrine-module": "5.3.x-dev as 5.3.x-dev", "doctrine/event-manager": "^1.2.0", "doctrine/mongodb-odm": "^2.4.2", "laminas/laminas-eventmanager": "^3.5.0", From 7b72de41d7ed05b71b471027f3587b0cdacd5159 Mon Sep 17 00:00:00 2001 From: Rudolph Gottesheim Date: Tue, 20 Dec 2022 11:11:50 +0100 Subject: [PATCH 2/3] Go back to the stable version of doctrine/doctrine-module --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 9212260..c5a476d 100644 --- a/composer.json +++ b/composer.json @@ -48,7 +48,7 @@ "php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0", "ext-mongodb": "*", "doctrine/doctrine-laminas-hydrator": "^3.1.0", - "doctrine/doctrine-module": "5.3.x-dev as 5.3.x-dev", + "doctrine/doctrine-module": "^5.2.1", "doctrine/event-manager": "^1.2.0", "doctrine/mongodb-odm": "^2.4.2", "laminas/laminas-eventmanager": "^3.5.0", From f2a7e293dafe3506f5af41dc1e0383ea66f68648 Mon Sep 17 00:00:00 2001 From: Rudolph Gottesheim Date: Wed, 21 Dec 2022 08:46:07 +0100 Subject: [PATCH 3/3] Require doctrine/doctrine-module 5.3.0 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index c5a476d..0eddd2b 100644 --- a/composer.json +++ b/composer.json @@ -48,7 +48,7 @@ "php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0", "ext-mongodb": "*", "doctrine/doctrine-laminas-hydrator": "^3.1.0", - "doctrine/doctrine-module": "^5.2.1", + "doctrine/doctrine-module": "^5.3.0", "doctrine/event-manager": "^1.2.0", "doctrine/mongodb-odm": "^2.4.2", "laminas/laminas-eventmanager": "^3.5.0",