From 84ed5e307274e3de0b6c4234d1f22f2ad2b46e0a Mon Sep 17 00:00:00 2001 From: Daniel Date: Fri, 24 Feb 2023 14:16:57 +0100 Subject: [PATCH 1/6] :arrow_up: allow Laravel 10 --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 0f851813e..b00d5f8c6 100644 --- a/composer.json +++ b/composer.json @@ -21,11 +21,11 @@ "php": "^7.4|^8.0", "livewire/livewire": "^2.6", "spatie/laravel-package-tools": "^1.4.3", - "illuminate/contracts": "^8.0|^9.0" + "illuminate/contracts": "^8.0|^9.0|^10.0" }, "require-dev": { "ext-sqlite3": "*", - "orchestra/testbench": "^6.13|^7.0", + "orchestra/testbench": "^6.13|^7.0|^8.0", "phpunit/phpunit": "^9.3", "spatie/laravel-ray": "^1.9", "vimeo/psalm": "^4.4" From 10570a110768ab0feff63af7440e6c67669cf303 Mon Sep 17 00:00:00 2001 From: Daniel Date: Fri, 24 Feb 2023 14:21:03 +0100 Subject: [PATCH 2/6] :construction_worker: run tests for L10 --- .github/workflows/run-tests.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 0c86dcff4..7d1e16de0 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -10,14 +10,18 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] php: [8.1, 8.0, 7.4] - laravel: [8.*, 9.*] + laravel: [8.*, 9.*, 10.*] stability: [prefer-lowest, prefer-stable] include: + - laravel: 10.* + testbench: 8.* - laravel: 9.* testbench: 7.* - laravel: 8.* testbench: 6.* exclude: + - laravel: 10.* + php: 8.0 - laravel: 9.* php: 7.4 - laravel: 8.* From 91c504fee17c7a5d29141fcc19d309fa33305967 Mon Sep 17 00:00:00 2001 From: Daniel Date: Fri, 24 Feb 2023 14:25:37 +0100 Subject: [PATCH 3/6] :green_heart: also exclude php 7.4 for L10 --- .github/workflows/run-tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 7d1e16de0..d2680405d 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -22,6 +22,8 @@ jobs: exclude: - laravel: 10.* php: 8.0 + - laravel: 10.* + php: 7.4 - laravel: 9.* php: 7.4 - laravel: 8.* From 71edb66151f277a316c5f93292a763b9d2137cb9 Mon Sep 17 00:00:00 2001 From: DanielGSoftware Date: Fri, 24 Feb 2023 13:26:02 +0000 Subject: [PATCH 4/6] Fix styling --- src/Commands/MakeCommand.php | 1 - src/Traits/WithFilters.php | 1 - 2 files changed, 2 deletions(-) diff --git a/src/Commands/MakeCommand.php b/src/Commands/MakeCommand.php index 0a5e31dd3..97821ec29 100644 --- a/src/Commands/MakeCommand.php +++ b/src/Commands/MakeCommand.php @@ -16,7 +16,6 @@ */ class MakeCommand extends Command { - /** * @var */ diff --git a/src/Traits/WithFilters.php b/src/Traits/WithFilters.php index 9a711cd19..737bd3793 100644 --- a/src/Traits/WithFilters.php +++ b/src/Traits/WithFilters.php @@ -15,7 +15,6 @@ */ trait WithFilters { - /** * @var bool */ From 6390c94eb06a0166286c3c082cd6db99190f9331 Mon Sep 17 00:00:00 2001 From: DanielGSoftware Date: Mon, 17 Jul 2023 10:03:00 +0200 Subject: [PATCH 5/6] :construction_worker: add matrix for php 8.2 --- .github/workflows/run-tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index d2680405d..efd6dc3eb 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,7 +9,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest, windows-latest] - php: [8.1, 8.0, 7.4] + php: [8.2, 8.1, 8.0, 7.4] laravel: [8.*, 9.*, 10.*] stability: [prefer-lowest, prefer-stable] include: @@ -26,6 +26,9 @@ jobs: php: 7.4 - laravel: 9.* php: 7.4 + - laravel: 8.* + php: 8.2 + stability: prefer-lowest - laravel: 8.* php: 8.1 stability: prefer-lowest From a293fd76cf3151769783aace55b93a988b93b88a Mon Sep 17 00:00:00 2001 From: DanielGSoftware Date: Mon, 17 Jul 2023 10:53:16 +0200 Subject: [PATCH 6/6] :green_heart: skip laravel 9, php 8.2, prefer-lowest combination --- .github/workflows/run-tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index efd6dc3eb..6201b4e8e 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -26,6 +26,9 @@ jobs: php: 7.4 - laravel: 9.* php: 7.4 + - laravel: 9.* + php: 8.2 + stability: prefer-lowest - laravel: 8.* php: 8.2 stability: prefer-lowest