From bba8c2ecc3fcc78e8632e0d719ae10bef6343eef Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Tue, 12 Nov 2024 22:51:12 +0800 Subject: [PATCH] [1.x] Supports PHP 8.4 (#576) --- .github/workflows/tests.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8594c3f8..e4957c26 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,9 +16,11 @@ jobs: strategy: fail-fast: true matrix: - php: [8.1, 8.2, 8.3] + php: [8.1, 8.2, 8.3, 8.4] laravel: [10, 11] exclude: + - php: 8.4 + laravel: 10 - php: 8.1 laravel: 11 @@ -38,7 +40,7 @@ jobs: coverage: none - name: Install dependencies - run: composer require "illuminate/contracts=^${{ matrix.laravel }}" --prefer-dist --no-interaction + run: composer update --prefer-dist --no-interaction --no-progress --with="illuminate/support=^${{ matrix.laravel }}" - name: Execute tests - run: vendor/bin/phpunit + run: vendor/bin/phpunit --display-deprecations