From 747bf42922500c898ed6370d9257ac5d7df1f7fe Mon Sep 17 00:00:00 2001 From: Shift Date: Wed, 19 Feb 2025 04:29:27 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 12 --- composer.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index df551cc..46b5c7a 100644 --- a/composer.json +++ b/composer.json @@ -17,16 +17,16 @@ ], "require": { "php": "^8.1", - "illuminate/support": "^10.0|^11.0" + "illuminate/support": "^10.0|^11.0|^12.0" }, "require-dev": { - "doctrine/dbal": "^3.3", + "doctrine/dbal": "^3.3|^4.2", "nunomaduro/collision": "^6.0|^8.0", - "orchestra/testbench": "^8.0.0|^9.0", - "pestphp/pest": "^1.21.1|^2.34", - "pestphp/pest-plugin-laravel": "^1.4|^2.3", - "phpunit/phpunit": "^9.3|^10.5", - "vimeo/psalm": "^4.4|^5.22" + "orchestra/testbench": "^8.0.0|^9.0|^10.0", + "pestphp/pest": "^1.21.1|^2.34|^3.7", + "pestphp/pest-plugin-laravel": "^1.4|^2.3|^3.1", + "phpunit/phpunit": "^9.3|^10.5|^11.5.3", + "vimeo/psalm": "^4.4|^5.22|^6.7" }, "autoload": { "psr-4": { From 376a940a9b1bd52688b684d5a1b87d9089dbecfa Mon Sep 17 00:00:00 2001 From: Shift Date: Wed, 19 Feb 2025 04:29:27 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 12 --- .github/workflows/tests.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a0a7ab0..376a148 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,16 +12,20 @@ jobs: fail-fast: true matrix: php: [8.1, '8.2'] - laravel: ['10.*', '11.*'] + laravel: ['10.*', '11.*', '12.*'] dependency-version: [prefer-stable] include: - laravel: 10.* testbench: 8.* - laravel: 11.* testbench: 9.* + - laravel: 12.* + testbench: 10.* exclude: - laravel: 11.* php: 8.1 + - laravel: 12.* + php: 8.1 name: PHP ${{ matrix.php }} - LARAVEL ${{ matrix.laravel }} - ${{ matrix.dependency-version }}