From 3348983474b248c7bafb754454dfd776b996b3e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Nikolaou?= Date: Sat, 13 Nov 2021 14:05:39 +0200 Subject: [PATCH 1/2] Test against PHP 8.1 --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f28b888..25ecc42 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: true matrix: - php: [8.0, 7.4, 7.3, 7.2] + php: [8.1, 8.0, 7.4, 7.3, 7.2] laravel: [^8.0, ^7.0] include: - laravel: ^7.0 From d74f17306b2ebce545879800548d61ae8b759d1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Nikolaou?= Date: Sat, 13 Nov 2021 14:11:37 +0200 Subject: [PATCH 2/2] Exclude Laravel 7 from PHP 8.1 --- .github/workflows/tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 25ecc42..55f806e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,6 +25,8 @@ jobs: exclude: - laravel: ^8.0 php: 7.2 + - laravel: ^7.0 + php: 8.1 name: P${{ matrix.php }} - L${{ matrix.laravel }}