From b024ad2cdc0f72e98e71e0ff5cd0c697468dde3c Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Mon, 14 Nov 2022 09:26:14 +0100 Subject: [PATCH] Fix min PHP in Nextcloud 24 Signed-off-by: Christoph Wurst --- .../app_upgrade_guide/upgrade_to_24.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_24.rst b/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_24.rst index a2ede4b72..d0f768cf2 100644 --- a/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_24.rst +++ b/developer_manual/app_publishing_maintenance/app_upgrade_guide/upgrade_to_24.rst @@ -22,14 +22,14 @@ Make sure your ``appinfo/info.xml`` allows for Nextcloud 24. PHP8.1 ------ -Nextcloud 24 is the first major Nextcloud release to work with PHP8.1. Follow the steps below to make your app compatible. +Nextcloud 24 is the first major Nextcloud release to work with PHP8.1. In this release support for PHP7.3 was dropped. Follow the steps below to make your app compatible. 1. If ``appinfo/info.xml`` has a dependency specification for PHP, increase the ``max-version`` to 8.1. .. code-block:: xml - + @@ -40,10 +40,10 @@ Nextcloud 24 is the first major Nextcloud release to work with PHP8.1. Follow th { "require": { - "php": ">=7.3 <=8.1" + "php": ">=7.4 <=8.1" } } -3. If you have :ref:`continuous integration ` set up, extend your test matrix with PHP8.1 tests and linters. +3. If you have :ref:`continuous integration ` set up, extend your test matrix with PHP8.1 tests and linters and drop any jobs for PHP7.3. Information about code changes can be found on `php.net `__ and `stitcher.io `__.