From d6f47331f4cf37cf06ed75cb240da2e2fe49505f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Kleszczy=C5=84ski?= Date: Wed, 23 Feb 2022 20:47:34 +0100 Subject: [PATCH 1/2] Add support for Laravel 9 --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index d7e832e..98262a8 100644 --- a/composer.json +++ b/composer.json @@ -18,12 +18,12 @@ ], "require": { "php": "^7.3|^8.0", - "illuminate/support": "^6.18|^7.0|^8.0", + "illuminate/support": "^6.18|^7.0|^8.0|^9.0", "spatie/server-side-rendering": "^0.3" }, "require-dev": { "phpunit/phpunit": "^8.0|^9.0", - "orchestra/testbench": "^4.0|^5.0|^6.0" + "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0" }, "autoload": { "psr-4": { From 064643775f9e32eb587f0d1699f901b0e2a65168 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Kleszczy=C5=84ski?= Date: Wed, 23 Feb 2022 20:47:54 +0100 Subject: [PATCH 2/2] Update tests workflow to include Laravel9 --- .github/workflows/run-tests.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 56852fa..531d9e4 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -10,15 +10,22 @@ jobs: matrix: os: [ubuntu-latest] php: [8.0, 7.4, 7.3] - laravel: [6.*, 7.*, 8.*] + laravel: [6.*, 7.*, 8.*, 9.*] dependency-version: [prefer-lowest, prefer-stable] include: + - laravel: 9.* + testbench: 7.* - laravel: 8.* testbench: 6.* - laravel: 7.* testbench: 5.* - laravel: 6.* testbench: 4.* + exclude: + - laravel: 9.* + php: 7.4 + - laravel: 9.* + php: 7.3 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}