From 2d2cf3503993744a5b0614f44e8eeae06504219d Mon Sep 17 00:00:00 2001 From: Bilfeldt Date: Wed, 4 Dec 2024 13:28:43 +0100 Subject: [PATCH] Add PHP 8.4 support --- .github/workflows/run-tests.yml | 2 ++ CHANGELOG.md | 4 ++++ README.md | 10 +++++----- composer.json | 2 +- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 928cceb..b81d5e8 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -27,6 +27,8 @@ jobs: exclude: - laravel: 11.* php: 8.1 + - laravel: 10.* + php: 8.1 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 08218a6..01795f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,10 @@ No breaking changes. The only changes are to the development dependencies used f ## Changes +### 3.4.0 - 2024-12-04 + +- Add PHP 8.4 support + ### 3.3.0 - 2024-05-07 - Add config for which model to use in the `RequestLog` models `user()` relationship diff --git a/README.md b/README.md index 6249725..0066ec0 100644 --- a/README.md +++ b/README.md @@ -9,11 +9,11 @@ Zero configuration logging of Requests and Responses to database or custom drivers in Laravel applications - no more issues debugging customer support requests. -| Version | Laravel | PHP | -|---------|-------------|-------------------------| -| 1.* | 8.* \| 9.* | 7.4.* \| 8.0.* \| 8.1.* | -| 2.* | 10.* | 8.1.* \| 8.2.* | -| 3.* | 10.* | 8.1.* \| 8.2.* | +| Version | Laravel | PHP | +|---------|-------------|----------------------------------| +| 1.* | 8.* \| 9.* | 7.4.* \| 8.0.* \| 8.1.* | +| 2.* | 10.* | 8.1.* \| 8.2.* | +| 3.* | 10.* | 8.1.* \| 8.2.* \| 8.3.* \| 8.4.* | ## Installation diff --git a/composer.json b/composer.json index 01384a6..46a64db 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ } ], "require": { - "php": "~8.1.0 || ~8.2.0 || ~8.3.0", + "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", "illuminate/contracts": "^10.0 || ^11.0", "ext-json": "*", "bilfeldt/laravel-correlation-id": "^1.0"