From d9dc1e46098862cd255d145f6ad5d02e0bf80fb1 Mon Sep 17 00:00:00 2001 From: Shift Date: Tue, 27 Feb 2024 16:19:01 +0000 Subject: [PATCH 1/3] Bump dependencies for Laravel 11 --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 397fde8..d1050c2 100755 --- a/composer.json +++ b/composer.json @@ -20,15 +20,15 @@ ], "require": { "php": "^8.0", - "illuminate/support": "^8.0|^9.0|^10.0", - "illuminate/console": "^8.0|^9.0|^10.0", + "illuminate/support": "^8.0|^9.0|^10.0|^11.0", + "illuminate/console": "^8.0|^9.0|^10.0|^11.0", "symfony/process": "^5.0|^6.0", "spatie/ssh": "^1.4", "spatie/laravel-package-tools": "^1.9" }, "require-dev": { - "orchestra/testbench": "^6.0|^7.0|^8.0", - "phpunit/phpunit": "^9.5", + "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0", + "phpunit/phpunit": "^9.5|^10.5", "mockery/mockery": "^1.4" }, "autoload": { From 871fb750e8ba64028aae4ae03f10fc7914945699 Mon Sep 17 00:00:00 2001 From: Shift Date: Tue, 27 Feb 2024 16:19:01 +0000 Subject: [PATCH 2/3] Update GitHub Actions for Laravel 11 --- .github/workflows/run-tests.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index c88fcb4..33d79ea 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -8,13 +8,13 @@ on: jobs: test: - runs-on: ubuntu-latest + strategy: fail-fast: false matrix: php: [8.2, 8.1, 8.0] - laravel: [9.*, 8.*, 10.*] + laravel: ['8.*', '9.*', '10.*', '11.*'] dependency-version: [prefer-lowest, prefer-stable] include: - laravel: 10.* @@ -23,9 +23,15 @@ jobs: testbench: ^7.0 - laravel: 8.* testbench: ^6.23 + - laravel: 11.* + testbench: ^9.0 exclude: - laravel: 10.* - php: 8.0 + php: 8.0 + - laravel: 11.* + php: 8.1 + - laravel: 11.* + php: 8.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} From f5f9ac8599e631ca2035c46048895008c071e9af Mon Sep 17 00:00:00 2001 From: Freek Van der Herten Date: Thu, 29 Feb 2024 09:25:57 +0100 Subject: [PATCH 3/3] Update composer.json Co-authored-by: Jason McCreary --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index d1050c2..87b1340 100755 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ "php": "^8.0", "illuminate/support": "^8.0|^9.0|^10.0|^11.0", "illuminate/console": "^8.0|^9.0|^10.0|^11.0", - "symfony/process": "^5.0|^6.0", + "symfony/process": "^5.0|^6.0|^7.0", "spatie/ssh": "^1.4", "spatie/laravel-package-tools": "^1.9" },