Add Laravel 13 support - #313
Merged
Merged
Conversation
- Add ^13 to illuminate/database and illuminate/support constraints - Add orchestra/testbench ^11.0 and phpunit ^12.0 for L13 testing - Add Laravel 13 to CI matrix with PHP version excludes (L13 requires PHP 8.3+, L12 requires PHP 8.2+) - Bump actions/checkout to v4 Closes mollie#311 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
PHPUnit 12 dropped support for @test and @group docblock annotations in favor of PHP 8 attributes. The test suite relies on these throughout, so PHPUnit 12 either skips tests entirely (33 "no tests found" warnings) or runs integration tests that should be excluded via @group. Converting to attributes is a separate effort. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
sandervanhooft
approved these changes
Apr 3, 2026
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.
Laravel 13 was released and the illuminate constraints need widening. This also updates the dev tooling to match.
illuminate/databaseandilluminate/supportnow accept^13orchestra/testbenchgets^11.0for Laravel 13 test supportactions/checkoutbumped from v3 to v4PHPUnit stays at
^10.0|^11.5(no^12.0). PHPUnit 12 dropped support for@testand@groupdocblock annotations, which the test suite uses throughout. Adding PHPUnit 12 support means converting all annotations to PHP 8 attributes — better done separately.No code changes — just dependency constraints and CI.
Closes #311, supersedes #312.