From 88785e32e0a0f246887085f6b49e61bd91e72e97 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Wed, 19 Oct 2022 18:16:37 +0200 Subject: [PATCH] [TASK] Document our approach to PHP version support (#654) Fixes #579 Closes #530 [ci skip] --- Documentation/Index.rst | 1 + Documentation/PHPVersionSupport.rst | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 Documentation/PHPVersionSupport.rst diff --git a/Documentation/Index.rst b/Documentation/Index.rst index 55746e9..b0af62f 100644 --- a/Documentation/Index.rst +++ b/Documentation/Index.rst @@ -43,6 +43,7 @@ continuous integration. :titlesonly: Introduction + PHPVersionSupport TestingFramework Environment DependencyManager diff --git a/Documentation/PHPVersionSupport.rst b/Documentation/PHPVersionSupport.rst new file mode 100644 index 0000000..9544b35 --- /dev/null +++ b/Documentation/PHPVersionSupport.rst @@ -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.)