From f2865ba9b53348afed6d9cd3a264a9fbefb6e7bc Mon Sep 17 00:00:00 2001 From: Dennis Riehle Date: Fri, 24 Jan 2025 16:12:55 +0100 Subject: [PATCH] allow PHP 8.4 --- .github/workflows/coding-standards.yml | 2 +- .github/workflows/composer-lint.yml | 2 +- .github/workflows/continuous-integration.yml | 1 + .github/workflows/phpstan.yml | 2 +- composer.json | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml index 1e78392..0e55e90 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.3" + php-version: "8.4" diff --git a/.github/workflows/composer-lint.yml b/.github/workflows/composer-lint.yml index 39e14e0..0b791ea 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.3" + php-version: "8.4" diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 8beddc1..3433b48 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -31,6 +31,7 @@ jobs: - "8.1" - "8.2" - "8.3" + - "8.4" dependencies: - "highest" include: diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index f1e6edc..17457e4 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.3" + php-version: "8.4" diff --git a/composer.json b/composer.json index 2b3a04a..1905430 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ ], "homepage": "https://www.doctrine-project.org/", "require": { - "php": "~8.1.0 || ~8.2.0 || ~8.3.0", + "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", "ext-mongodb": "*", "doctrine/cache": "^2.0.0", "doctrine/doctrine-laminas-hydrator": "^3.3.0",