Skip to content

Commit

Permalink
fix(admin): List PHP 8.4 as supported
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Nov 18, 2024
1 parent 320efe4 commit 89793e8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion admin_manual/installation/php_configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
1 change: 1 addition & 0 deletions admin_manual/installation/system_requirements.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions admin_manual/release_notes/upgrade_to_31.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
-----------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 89793e8

Please sign in to comment.