From f79d4171457d5f6775da29a0330a459c489c156a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Tue, 31 Mar 2026 03:35:08 +0200 Subject: [PATCH] Laravel 13 support (#49) --- .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",