1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-12 09:04:24 +02:00

support for PHP 8.4

This commit is contained in:
David Grudl
2024-06-19 00:16:56 +02:00
parent d707b4ba0e
commit 0a32bb5bdf
3 changed files with 4 additions and 3 deletions

View File

@@ -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

View File

@@ -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"

View File

@@ -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