AssertIgnoringLineEndings: fix compatibility with PHPUnit 8/9/10 PHAR files #164
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.
PHPUnit 8.5..38, 9.6.19 and 10.5.17 contain a change in the PHAR files. In particular, a change in how external dependencies included in the packaged PHAR files are prefixed to prevent conflicts with potentially Composer installed dependencies on the same packages.
In practice, the prefix for these external dependencies which is being added when the PHAR is being build has changed from
PHPUnit\\
toPHPUnitPHAR\\
.This impacts the
AssertIgnoringLineEndings
polyfill which uses theSebastianBergmann\Exporter\Exporter
class from the externalExporter
dependency.This commit fixes the issue.
Refs: