From 1f2a462eda20edf3fe08379e6419df997656c164 Mon Sep 17 00:00:00 2001 From: Shift Date: Sat, 15 Feb 2025 19:26:24 +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 66b5ef1..d14ba33 100644 --- a/composer.json +++ b/composer.json @@ -17,11 +17,11 @@ ], "require": { "php": "^8.2|^8.3|^8.4", - "illuminate/support": "^10.0|^11.0" + "illuminate/support": "^10.0|^11.0|^12.0" }, "require-dev": { - "orchestra/testbench": "^8.0|^9.0", - "phpunit/phpunit": "^10.4" + "orchestra/testbench": "^8.0|^9.0|^10.0", + "phpunit/phpunit": "^10.4|^11.5.3" }, "autoload": { "psr-4": { @@ -49,4 +49,4 @@ ] } } -} \ No newline at end of file +} From 19f540216b6348cd93f6aab0ec61b72fa1cccc5a Mon Sep 17 00:00:00 2001 From: Shift Date: Sat, 15 Feb 2025 19:26:24 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 12 --- .github/workflows/run-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index e6840d2..4b368e5 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -12,13 +12,15 @@ jobs: fail-fast: true matrix: php: [8.4, 8.3, 8.2] - laravel: ["10.*", "11.*"] + laravel: ['10.*', '11.*', '12.*'] dependency-version: [prefer-lowest, prefer-stable] include: - laravel: 10.* testbench: 8.* - laravel: 11.* testbench: 9.* + - laravel: 12.* + testbench: 10.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}