From ff5c38b0738059ca4d029950a345460a8fb634c0 Mon Sep 17 00:00:00 2001 From: Jacob Baker-Kretzmar Date: Wed, 25 Feb 2026 12:26:49 -0500 Subject: [PATCH] Test on Laravel 13 --- .github/workflows/test.yml | 6 ++++-- composer.json | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f15722a1..28015238 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,12 +17,14 @@ jobs: matrix: os: [[Ubuntu, ubuntu-latest], [Windows, windows-latest]] php: [8.2, 8.3, 8.4, 8.5, 8.6] - laravel: [10, 11, 12] + laravel: [10, 11, 12, 13] exclude: - php: 8.5 laravel: 10 - php: 8.6 laravel: 10 + - php: 8.2 + laravel: 13 include: - php: 8.6 composer: --ignore-platform-req=php+ @@ -35,7 +37,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 24 - cache: 'npm' + cache: npm - run: composer require laravel/framework:"${{ matrix.laravel }}.*" --no-update --no-interaction - uses: ramsey/composer-install@v3 with: diff --git a/composer.json b/composer.json index f5352462..0f563786 100644 --- a/composer.json +++ b/composer.json @@ -30,7 +30,7 @@ }, "require-dev": { "laravel/folio": "^1.1", - "orchestra/testbench": "^8.0 || ^9.0 || ^10.0", + "orchestra/testbench": "^8.0 || ^9.0 || ^10.0 || ^11.0", "pestphp/pest": "^2.0 || ^3.0 || ^4.0", "pestphp/pest-plugin-laravel": "^2.0 || ^3.0 || ^4.0" },