PHP 8.3 compatibility#24
Merged
falkenhawk merged 6 commits intomasterfrom Apr 1, 2026
Merged
Conversation
…, skip .phpt tests gracefully
…() single-arg and PEAR globals backup
This was referenced Apr 1, 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.
ensure PHP 8.3 compatibility.
fix dynamic property deprecation warning on
Framework_AssertTest::$html(cherry-picked from PHP 8.2: Dynamic Properties are deprecated #18)add PHP 8.3 to CI matrix, update
actions/checkoutv2 → v3move PEAR from composer dependency to
pearCLI, switch to composer v2.the composer v2 packagist version of
pear/pearrequires PHP 5.4+, and the PHP 5.3-compatible version previously installable via composer v1 is no longer available since packagist dropped composer v1 support (see discussion in Switch PEAR dependency to github #20).In the CI workflow, PEAR is now installed via
pearCLI provided bysetup-php. Locally,.phpttests skip gracefully when PEAR is not available.update README with PHP 8.3 compat range
fix PHP 8.3 deprecations in
GlobalState:ReflectionProperty::setValue()single-arg form deprecated for static properties - use two-arg form withnull_PEAR_Config_instancefrom globals backup/restore to avoid dynamic property deprecation when unserializingPEAR_Registryobjectsenable deprecation reporting on CI (
error_reporting=E_ALL) -setup-phpdefaults to production ini which excludesE_DEPRECATED