chore: declare Laravel 13 compatibility#41
Merged
Conversation
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)
There was a problem hiding this comment.
Ship it.
- composer.json constraint updates align exactly with the stated Laravel 13 compatibility goal and the CVE fixes in connector ^1.0.1.
- No source changes required; runtime surface (ServiceProvider, Collection, Facade) remains stable between L12/L13 per the verification matrix.
- PHP 8.3 floor, widened illuminate/support dev dep, and pinned connector all pass the provided checks (Pest on both branches, clean audit, unchanged PHPStan baseline).
- Diff scope is minimal and safe.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Why no source changes
The package's runtime code only touches stable Illuminate surface — `ServiceProvider`, `Collection`, `Facade`. None of these changed shape between L12 and L13. Verified by running the test suite against `illuminate/support v13.11.1`.
Verification
Test plan