From d91e4eaf5698ba39042e3e3e31d7a789cd9fcf09 Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Tue, 12 Nov 2024 17:27:32 +0800 Subject: [PATCH] [7.x] Supports PHP 8.4 Signed-off-by: Mior Muhammad Zaki --- .github/workflows/tests.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3400115..0f71526 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,6 +20,13 @@ jobs: php: [8.2, 8.3] phpunit: [10, 11] laravel: [10, 11] + include: + - php: 8.4 + laravel: 11 + phpunit: 10 + - php: 8.4 + laravel: 11 + phpunit: 11 exclude: - phpunit: 11 laravel: 10 @@ -41,7 +48,7 @@ jobs: - name: Install dependencies run: | - composer update --with=laravel/framework=^${{ matrix.laravel }} --with=phpunit/phpunit:^${{ matrix.phpunit }} --prefer-dist --no-interaction --no-progress + composer update --with="laravel/framework=^${{ matrix.laravel }}" --with="phpunit/phpunit:^${{ matrix.phpunit }}" --prefer-dist --no-interaction --no-progress - name: Execute tests run: vendor/bin/phpunit