From 6e01328250c817f29695748a23873a10c88a5b53 Mon Sep 17 00:00:00 2001 From: Shift Date: Tue, 18 Feb 2025 16:33:23 +0000 Subject: [PATCH 1/3] Bump dependencies for Laravel 12 --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 7bbaf50..a87c3d8 100644 --- a/composer.json +++ b/composer.json @@ -22,11 +22,11 @@ "prefer-stable": true, "require": { "php": "^8.2", - "illuminate/http": "^10|^11.0" + "illuminate/http": "^10|^11.0|^12.0" }, "require-dev": { - "orchestra/testbench": "^8.0|^9.0", - "phpunit/phpunit": "^9.4|^10.5" + "orchestra/testbench": "^8.0|^9.0|^10.0", + "phpunit/phpunit": "^9.4|^10.5|^11.5.3" }, "autoload": { "psr-4": { From 10ff83eaabd297e709d99d0187cdf324530c82f5 Mon Sep 17 00:00:00 2001 From: Shift Date: Tue, 18 Feb 2025 16:33:23 +0000 Subject: [PATCH 2/3] Update GitHub Actions for Laravel 12 --- .github/workflows/run-tests.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index f6fea0a..ef2ce89 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,10 +13,9 @@ jobs: matrix: os: [ubuntu-latest] php: [8.2] - laravel: ['10.*', '11.*'] + laravel: ['10.*', '11.*', '12.*'] dependency-version: [prefer-stable] - name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} steps: From 3702a4d62c1b2d9d50af9c2124d7991d57f2665c Mon Sep 17 00:00:00 2001 From: Freek Van der Herten Date: Fri, 21 Feb 2025 15:10:09 +0100 Subject: [PATCH 3/3] Update run-tests.yml --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index ef2ce89..2a41506 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -31,7 +31,7 @@ jobs: - name: Install dependencies run: | - composer require "laravel/framework:${{ matrix.laravel }}" "nesbot/carbon:^2.63" --no-interaction --no-update + composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction - name: Execute tests