From c830e785775aa8a4e4c4ab450545baf90b6b9d6a Mon Sep 17 00:00:00 2001 From: Aleksei Lebedev <1329824+LastDragon-ru@users.noreply.github.com> Date: Fri, 22 Mar 2024 13:14:18 +0400 Subject: [PATCH] ci(github): PHP 8.1 disabled for Laravel v11. --- .github/workflows/phpunit.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 0873e6d1c..868990424 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -96,6 +96,9 @@ jobs: # Laravel v10 doesn't support PHP 8.0 - php: 8.0 laravel: ^10.0.0 + # Laravel v11 doesn't support PHP 8.1 + - php: 8.1 + laravel: ^11.0.0 steps: # Required to avoid converting LF into CRLF on Windows or some tests will fail.