[TASK] DPL-158: Upgrade testing infrastructure#25
Merged
Conversation
ba9acd6 to
e5d3a10
Compare
This change upgrades the testing infrastructure
to the lowest possible construct suitable for
TYPO3 v13 and v14 testing. This includes:
* Upgrade to `phpunit 11.x` and align dependecies
on suitable versions.
* Upgrade `typo3/testing-framework` to `^9.4.0`
for TYPO3 v13 and v14 support.
* Removed `'sbuerk/typo3-styleguide-selector'`
as not required anymore because it's now
enforced with matching version by TYPO3.
Used command(s):
```bash
Build/Scripts/runTests.sh -s composer -- remove \
--dev 'sbuerk/typo3-styleguide-selector' && \
Build/Scripts/runTests.sh -s composer -- require \
--dev -W \
'phpunit/phpunit':'^11.2.5' \
'php-mock/php-mock-phpunit':'^2.15.0' \
'helmich/phpunit-json-assert':'^3.5.5' \
'typo3/testing-framework':'^9.4.0' \
'sbuerk/typo3-site-based-test-trait':'^2.0.1 || ^3.0.0' \
'typo3/cms-styleguide':'^13.4.10'
```
e5d3a10 to
a779147
Compare
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.
This change upgrades the testing infrastructure
to the lowest possible construct suitable for
TYPO3 v13 and v14 testing. This includes:
Upgrade to
phpunit 11.xand align dependecieson suitable versions.
Upgrade
typo3/testing-frameworkto^9.4.0for TYPO3 v13 and v14 support.
Removed
'sbuerk/typo3-styleguide-selector'as not required anymore because it's now
enforced with matching version by TYPO3.
Used command(s):