From 85f0d9e8e18284fd9599e84f36192489e9552149 Mon Sep 17 00:00:00 2001 From: Jarand Date: Tue, 14 Feb 2023 09:56:42 +0100 Subject: [PATCH 1/2] Adds support for Laravel 10 --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 130017d..d085ac5 100644 --- a/composer.json +++ b/composer.json @@ -23,8 +23,8 @@ "php": "^7.4 || ^8.0", "ext-json": "*", "guzzlehttp/guzzle": "^7.2", - "illuminate/http": "^8.0 || ^9.0", - "illuminate/support": "^8.0 || ^9.0", + "illuminate/http": "^8.0 || ^9.0 || ^10.0", + "illuminate/support": "^8.0 || ^9.0 || ^10.0", "spatie/laravel-package-tools": "^1.1" }, "require-dev": { From 704287897d54015b3d732dcf6117efa78186dc95 Mon Sep 17 00:00:00 2001 From: Bilfeldt Date: Tue, 14 Feb 2023 10:26:05 +0100 Subject: [PATCH 2/2] Update github action tests --- .github/workflows/run-tests.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 4acf878..20a7e2d 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,15 +9,21 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest, windows-latest] - php: [8.0, 7.4] - laravel: [9.*, 8.*] + php: [8.2, 8.1, 8.0, 7.4] + laravel: [10.*, 9.*, 8.*] stability: [prefer-stable] include: + - laravel: 10.* + testbench: 8.* - laravel: 9.* testbench: 7.* - laravel: 8.* testbench: 6.* exclude: + - laravel: 10.* + php: 7.4 + - laravel: 10.* + php: 8.0 - laravel: 9.* php: 7.4