From 475e83e42136f5a528761e2e27cb662cfacda665 Mon Sep 17 00:00:00 2001 From: Jasper Koers Date: Wed, 18 Mar 2026 11:53:22 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20ci(ci):=20support=20Laravel=2013?= =?UTF-8?q?=20in=20CI=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - add Laravel 13 to the CI matrix for testing compatibility - ensure the project works with the latest Laravel version ✨ feat(composer): allow Laravel 13 in dependencies - update illuminate/support to support both Laravel 12 and 13 - modify laravel/framework requirement to include version 13 --- .github/workflows/ci.yml | 1 + composer.json | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca7c20f6..48b1ffd2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,7 @@ jobs: matrix: include: - laravel: "^12.0" + - laravel: "^13.0" steps: - name: Checkout diff --git a/composer.json b/composer.json index b03e1b2f..4eb75987 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ "require": { "php": "^8.4", "ext-json": "*", - "illuminate/support": "^12.0", + "illuminate/support": "^12.0|^13.0", "laravel/tinker": "^2.0", "ramsey/uuid": "^4.7.3", "stancl/jobpipeline": "2.0.0-rc6", @@ -27,7 +27,7 @@ "laravel/prompts": "0.*" }, "require-dev": { - "laravel/framework": "^12.0", + "laravel/framework": "^12.0|^13.0", "orchestra/testbench": "^10.0", "league/flysystem-aws-s3-v3": "^3.12.2", "doctrine/dbal": "^3.6.0",