From 030f8a21271557be2bdbb4aee629aa6a2c7800f8 Mon Sep 17 00:00:00 2001 From: Shift Date: Mon, 17 Feb 2025 00:35:28 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 12 --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 6e60f0e..ddfc471 100644 --- a/composer.json +++ b/composer.json @@ -14,13 +14,13 @@ "require": { "php": "^8.1", "guzzlehttp/guzzle": "^7.0.1", - "illuminate/notifications": "^8.0 || ^9.0 || ^10.0 || ^11.0", - "illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0" + "illuminate/notifications": "^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0", + "illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0" }, "require-dev": { "mockery/mockery": "^1.3.1", - "phpunit/phpunit": "^9.3 || ^10.5", - "orchestra/testbench": "^8.0 || ^9.0", + "phpunit/phpunit": "^9.3 || ^10.5 || ^11.5.3", + "orchestra/testbench": "^8.0 || ^9.0 || ^10.0", "dms/phpunit-arraysubset-asserts": ">=0.1.0" }, "suggest": { From 7b4cfccd217746c7c70fc23051f80fc0f807b7d6 Mon Sep 17 00:00:00 2001 From: Shift Date: Mon, 17 Feb 2025 00:35:28 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 12 --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8701631..476082d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: fail-fast: true matrix: php: [8.3, 8.2, 8.1] - laravel: ['8.*', '9.*', '10.*', '11.*'] + laravel: ['8.*', '9.*', '10.*', '11.*', '12.*'] include: - laravel: 10.* testbench: 8.* @@ -24,9 +24,13 @@ jobs: testbench: 6.* - laravel: 11.* testbench: 9.* + - laravel: 12.* + testbench: 10.* exclude: - laravel: 11.* php: 8.1 + - laravel: 12.* + php: 8.1 steps: - name: Checkout code