@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Bump PHP version requirement from 5.2.3 to 7.2.25

Summary:
Supporting PHP 8.4 requires syntax introduced in PHP 7.1.
Thus require PHP version 7.2.25 released on 21 November 2019.
Phorge previously required version 5.2.3 released on 31 May 2007.

Closes T15047

Test Plan: None.

Reviewers: O1 Blessed Committers, Sten, avivey

Reviewed By: O1 Blessed Committers, Sten, avivey

Subscribers: Sten, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T15047

Differential Revision: https://we.phorge.it/D25815

+2 -2
+1 -1
src/docs/user/installation_guide.diviner
··· 80 80 - **MySQL**: You need MySQL. We strongly recommend MySQL 5.5 or newer. 81 81 You will need a server with multiple databases. 82 82 - **PHP**: You need a PHP engine: 83 - - PHP 7 - 7.2 or newer. 83 + - PHP 7 - 7.2.25 or newer. 84 84 - PHP 8 - 8.0 or newer. 85 85 - **git**: You need git 2.5.0 or newer on the server. 86 86 No particular version is needed on your clients.
+1 -1
support/startup/PhabricatorStartup.php
··· 535 535 * @task validation 536 536 */ 537 537 private static function verifyPHP() { 538 - $required_version = '5.2.3'; 538 + $required_version = '7.2.25'; 539 539 if (version_compare(PHP_VERSION, $required_version) < 0) { 540 540 self::didFatal( 541 541 "You are running PHP version '".PHP_VERSION."', which is older than ".