Allow PHPUnit 13 - #77
Merged
Merged
Conversation
The constraint stopped at 12, so CI never exercised the current major. PHPUnit 13 needs PHP 8.4, which the matrix has covered since PHP 8.5 was added, so Composer now resolves 11 on the 8.1 job and 13 on the 8.4 and 8.5 ones. Verified against 13.2.6: the suite passes unchanged and phpunit.xml.dist produces no schema warnings.
There was a problem hiding this comment.
Pull request overview
Expands the supported PHPUnit major versions in require-dev so CI can exercise the newest compatible PHPUnit per PHP-version job (notably enabling PHPUnit 13 on PHP 8.4+), keeping the full supported range under test.
Changes:
- Allow
phpunit/phpunit^13.0incomposer.jsonwhile retaining support for^10.3,^11.2, and^12.0.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
require-devcapped PHPUnit at^12.0, so no CI job ever ran the current major.PHPUnit 13 requires PHP 8.4, which the matrix has covered since #71 added 8.5. Composer resolves the highest compatible per job, so 8.1 keeps running 11 and the 8.4 and 8.5 jobs move to 13 - the whole supported range stays exercised rather than pinned to one major.
Verified locally against 13.2.6: 128 tests pass unchanged, and
phpunit.xml.distproduces no schema warnings on the new major.