From 16416c3e0cf29d7f5bb8c1c95566d64bfe9182b4 Mon Sep 17 00:00:00 2001 From: Samuel Stancl Date: Tue, 31 Mar 2026 03:22:42 +0200 Subject: [PATCH] Laravel 13 support --- .github/workflows/ci.yml | 6 ++---- composer.json | 4 ++-- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e29f1e1..f605e2f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,16 +11,14 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - laravel: [10, 11, 12] + laravel: [10, 11, 12, 13] steps: - uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: 8.2 - tools: composer:v2 - coverage: none + php-version: 8.3 - name: Install composer dependencies run: composer require "laravel/framework:^${{matrix.laravel}}.0" - name: Run tests diff --git a/composer.json b/composer.json index 4aa74ab..ba515fc 100644 --- a/composer.json +++ b/composer.json @@ -24,8 +24,8 @@ }, "require": { "php": "^8.2", - "illuminate/support": "^10.0|^11.0|^12.0", - "illuminate/view": "^10.0|^11.0|^12.0" + "illuminate/support": "^10.0|^11.0|^12.0|^13.0", + "illuminate/view": "^10.0|^11.0|^12.0|^13.0" }, "require-dev": { "orchestra/testbench": ">=8.0",