From bb48a0403dbf64601b9184a721a36149b3ff6777 Mon Sep 17 00:00:00 2001 From: Jordan Partridge Date: Tue, 19 May 2026 13:59:21 -0700 Subject: [PATCH] chore: declare Laravel 13 compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps the PHP floor to 8.3 (Laravel 13 minimum) and widens the illuminate/support dev-dependency constraint to admit Laravel 13.x. Also pins conduit-ui/connector to ^1.0.1, which carries the Saloon 4 security upgrade — without that, composer audit blocks installs into Laravel 13 starter kits due to three Saloon 3.x CVEs. The package's runtime code only touches stable Illuminate surface (ServiceProvider, Collection, Facade) so no source changes are needed. Verified: - 310/310 tests pass against illuminate/support v13.11.1 - composer audit clean - PHPStan baseline unchanged (16 pre-existing errors, 0 new) --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index db93924..109c881 100644 --- a/composer.json +++ b/composer.json @@ -11,11 +11,11 @@ } ], "require": { - "php": "^8.2", - "conduit-ui/connector": "^1.0" + "php": "^8.3", + "conduit-ui/connector": "^1.0.1" }, "require-dev": { - "illuminate/support": "^12.43", + "illuminate/support": "^12.43|^13.0", "laravel/pint": "^1.0", "pestphp/pest": "^3.0", "phpstan/extension-installer": "*",