From 677e38af23a07e34e974c5805a8ba5c65793e908 Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Tue, 19 Nov 2024 11:48:43 +0800 Subject: [PATCH] [3.x] Supports PHP 8.4 (#14) Signed-off-by: Mior Muhammad Zaki --- .github/workflows/audits.yaml | 3 +++ .github/workflows/tests.yaml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/audits.yaml b/.github/workflows/audits.yaml index d4fbf24..224be4d 100644 --- a/.github/workflows/audits.yaml +++ b/.github/workflows/audits.yaml @@ -15,6 +15,7 @@ jobs: - 8.1 - 8.2 - 8.3 + - 8.4 laravel: - "10.x" - "11.x" @@ -23,6 +24,8 @@ jobs: exclude: - php: 8.1 laravel: "11.x" + - php: 8.4 + laravel: "10.x" name: Laravel:${{ matrix.laravel }} / PHP:${{ matrix.php }} Code Audit diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 309b818..46bba8d 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -20,6 +20,7 @@ jobs: - 8.1 - 8.2 - 8.3 + - 8.4 laravel: - "11.x" - "10.x" @@ -31,6 +32,8 @@ jobs: exclude: - php: 8.1 laravel: "11.x" + - php: 8.4 + laravel: "10.x" name: Laravel:${{ matrix.laravel }} / PHP:${{ matrix.php }} / OS:${{ matrix.os }} ${{ matrix.dependencies == 'highest' && '⬆️' || '⬇️' }}