[!!!][TASK] Remove TYPO3 v12 and PHP 8.1 support#31
Merged
Conversation
This change removes TYPO3 v12 and PHP8.1 support starting
by removing related options in Github Actions , the script
dispatcher `Build/Scripts/runTests.sh` and related version
constraints in `composer.json` and `ext_emconf.php`.
Dependencies and tool chain will be streamlined and updated
in follow-up changes to keep the scope small and clean.
Used command(s):
```bash
rm -rf Build/phpstan/Core12 \
&& composer config minimum-stability "dev" \
&& composer config prefer-stable true \
&& composer require --no-update \
"php":"^8.2 || ^8.3 || ^8.4 || ^8.5" \
"typo3/cms-backend":"^13.4" \
"typo3/cms-core":"^13.4" \
&& pkw-dev extemconf:normalize -t 13 . \
&& pkw-dev extemconf:constraints:set \
-t 13 \
--constraint='8.2.0-8.5.99' \
--update-only \
depends php \
. \
&& pkw-dev extemconf:constraints:set \
-t 13 \
--constraint='13.4.0-13.4.99' \
--update-only \
depends typo3 \
. \
&& pkw-dev extemconf:constraints:set \
-t 13 \
--constraint='13.4.0-13.4.99' \
--update-only \
depends backend \
.
```
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 removes TYPO3 v12 and PHP8.1 support starting
by removing related options in Github Actions , the script
dispatcher
Build/Scripts/runTests.shand related versionconstraints in
composer.jsonandext_emconf.php.Dependencies and tool chain will be streamlined and updated
in follow-up changes to keep the scope small and clean.
Used command(s):