From 2f087ee1ef4fb5e1cdb4af3e44a98448bf07360d Mon Sep 17 00:00:00 2001 From: Alies Lapatsin Date: Fri, 6 Mar 2026 11:59:12 +0100 Subject: [PATCH] feat: add Laravel 13 support --- .github/workflows/run-tests.yml | 10 ++++++---- composer.json | 4 ++-- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 04a9147..baaf3d2 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,14 +9,16 @@ jobs: fail-fast: true matrix: os: [ ubuntu-latest ] - php: [ 8.3, 8.2 ] - laravel: [ 11.*, 10.* ] + php: [ 8.4, 8.3 ] + laravel: [ 13.*, 12.*, 11.* ] dependency-version: [ prefer-stable ] include: + - laravel: 13.* + testbench: 11.* + - laravel: 12.* + testbench: 10.* - laravel: 11.* testbench: 9.* - - laravel: 10.* - testbench: 8.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index 77a7080..3bc44f1 100644 --- a/composer.json +++ b/composer.json @@ -9,13 +9,13 @@ "html" ], "require": { - "php": "^8.2", + "php": "^8.3", "ext-json": "*", "laravel/nova": "^4.25 || ^5.0" }, "require-dev": { "interaction-design-foundation/coding-standard": "^0.3.0", - "orchestra/testbench-core": "^8.0 || ^9.0", + "orchestra/testbench-core": "^8.0 || ^9.0 || ^10.0 || ^11.0", "phpunit/phpunit": "^10.5 || ^11.0" }, "repositories": [