From ab68077b23e42d3e99ff3f88be4957ca964580bb Mon Sep 17 00:00:00 2001 From: David Grudl Date: Wed, 19 Jun 2024 00:16:56 +0200 Subject: [PATCH] support for PHP 8.4 --- .github/workflows/tests.yml | 2 +- composer.json | 3 ++- readme.md | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bdcf17ae..7f9208de 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: ['8.0', '8.1', '8.2', '8.3'] + php: ['8.0', '8.1', '8.2', '8.3', '8.4'] fail-fast: false diff --git a/composer.json b/composer.json index e25e3663..eb8aa73e 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ } ], "require": { - "php": "8.0 - 8.3" + "php": "8.0 - 8.4" }, "require-dev": { "tracy/tracy": "^2.9", @@ -26,6 +26,7 @@ "autoload": { "classmap": ["src/"] }, + "minimum-stability": "dev", "scripts": { "phpstan": "phpstan analyse", "tester": "tester tests -s" diff --git a/readme.md b/readme.md index 9dd3d2be..e75f2773 100644 --- a/readme.md +++ b/readme.md @@ -34,7 +34,7 @@ Install Dibi via Composer: composer require dibi/dibi ``` -The Dibi 5.0 requires PHP version 8.0 and supports PHP up to 8.3. +The Dibi 5.0 requires PHP version 8.0 and supports PHP up to 8.4. Usage