fix(admin): List PHP 8.4 as supported

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling
2024-11-08 15:14:26 +01:00
parent 320efe4f49
commit 89793e80be
5 changed files with 6 additions and 4 deletions

View File

@@ -129,4 +129,4 @@ You can search for a parameter with the following command: ``grep -r date.timezo
/etc/php/8.3/cli/php.ini
.. note:: Path names have to be set in respect of the installed PHP
(8.1, 8.2 or 8.3) as applicable.
(8.1, 8.2, 8.3 or 8.4) as applicable.

View File

@@ -35,6 +35,7 @@ For best performance, stability and functionality we have documented some recomm
| PHP Runtime | - 8.1 (*deprecated*) |
| | - 8.2 |
| | - **8.3** (*recommended*) |
| | - 8.4 |
+------------------+-----------------------------------------------------------------------+
See :doc:`source_installation` for minimum PHP-modules and additional software for installing Nextcloud.

View File

@@ -6,6 +6,7 @@ System requirements
-------------------
* PHP 8.1 is now deprecated but still supported.
* PHP 8.4 is now supported, but 8.3 is recommended.
PHP configuration
-----------------

View File

@@ -134,7 +134,7 @@ In this release support for PHP 8.0 was removed. Follow the steps below to make
.. code-block:: xml
<dependencies>
<php min-version="8.1" max-version="8.4" />
<php min-version="8.1" max-version="8.3" />
<nextcloud min-version="27" max-version="30" />
</dependencies>
@@ -145,7 +145,7 @@ In this release support for PHP 8.0 was removed. Follow the steps below to make
{
"require": {
"php": ">=8.1 <=8.4"
"php": ">=8.1 <=8.3"
}
}

View File

@@ -78,7 +78,7 @@ In that case the ``php``-dependencies entries can be omitted.
<dependencies>
<php min-version="8.1" max-version="8.4" />
<nextcloud min-version="26" max-version="28" />
<nextcloud min-version="29" max-version="31" />
</dependencies>