From 7fa94cfea72fa1bb19a94d9c6c496c0e85c6b3e5 Mon Sep 17 00:00:00 2001 From: Shift Date: Wed, 19 Feb 2025 02:19:49 +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 3e51400..4dfef7e 100644 --- a/composer.json +++ b/composer.json @@ -20,12 +20,12 @@ "require": { "php": ">=7.1.0", "facade/ignition-contracts": "^1.0", - "illuminate/support": "^9.19|^10.0|^11.0" + "illuminate/support": "^9.19|^10.0|^11.0|^12.0" }, "require-dev": { - "orchestra/testbench": "^7.0|^8.0|^9.0", - "phpunit/phpunit": "^8.3|^9.0|^10.5", - "vimeo/psalm": "^4.0|^5.22" + "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0", + "phpunit/phpunit": "^8.3|^9.0|^10.5|^11.5.3", + "vimeo/psalm": "^4.0|^5.22|^6.7" }, "autoload": { "psr-4": { From ed23e4d271c0c1d5f8c9ff1712f61e7d795b245e Mon Sep 17 00:00:00 2001 From: Shift Date: Wed, 19 Feb 2025 02:19:49 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 12 --- .github/workflows/run-tests.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 3611a1b..4688b27 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,7 +13,7 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] php: [8.0, 8.1, 8.2] - laravel: ['9.*', '10.*', '11.*'] + laravel: ['9.*', '10.*', '11.*', '12.*'] stability: [prefer-lowest, prefer-stable] exclude: - laravel: 9.* @@ -26,6 +26,10 @@ jobs: php: 8.0 - laravel: 11.* php: 8.1 + - laravel: 12.* + php: 8.0 + - laravel: 12.* + php: 8.1 include: - laravel: 9.* testbench: 7.* @@ -33,6 +37,8 @@ jobs: testbench: 8.* - laravel: 11.* testbench: 9.* + - laravel: 12.* + testbench: 10.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}