mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 03:16:13 +02:00

[TASK] Document our approach to PHP version support (#654)

Fixes #579
Closes #530

[ci skip]
This commit is contained in:
Oliver Klee 2022-10-19 18:16:37 +02:00 committed by GitHub
parent 43e4829255
commit 88785e32e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 0 deletions

View file

@ -43,6 +43,7 @@ continuous integration.
:titlesonly:
Introduction
PHPVersionSupport
TestingFramework
Environment
DependencyManager

View file

@ -0,0 +1,17 @@
.. include:: /Includes.rst.txt
.. _php-version-support:
===================================
Our approach to PHP version support
===================================
1. For the TYPO3 versions we currently support, this extension will support all
PHP versions officially supported by those TYPO3 versions.
2. In addition, we are doing our best to support newer PHP versions as soon as
they are available (even release candidates, alphas and betas).
3. Before we mark a PHP version as supported via :file:`composer.json` and
:file:`ext_emconf.php`, we ensure that all tests pass on that PHP
version. (That also means that if you want to install the extension on that
PHP version nonetheless, you will need to tweak Composer's platform settings
to bypass this.)