From: Reedy Date: Thu, 10 Oct 2019 20:25:58 +0000 (+0100) Subject: Set minimum PHP version to 7.2.9 X-Git-Tag: 1.34.0-rc.0~10 X-Git-Url: http://git.cyclocoop.org/data/%7B%7B%20url_for%28%27static%27%2C%20filename=%27js/%40%20%27info_articles_miens%27%20=%3E%20%27My%20articles%27%2C%20%27info_articles_tous%27%20=%3E%20%27All%20the%20articles%27%2C%20%27info_articles_trouves%27%20=%3E%20%27Articles%20found%27%2C-%27info_articles_trouves_dans_texte%27%20=%3E%20%27Articles%20found%20%28in%20the%20text%29%27%2C%20%27info_attente_validation%27%20=%3E%20%27Your%20articles%20awaiting%20validation%27%2C%20%27info_aucun_article%27%20=%3E%20%27No%20articles%27%2C-%27info_aucun_article_syndique%27%20=%3E%20%27No%20syndicated%20articles%27%2C%20%27info_aucun_auteur%27%20=%3E%20%27No%20authors%27%2C%20%27info_aucun_message%27%20=%3E%20%27No%20messages%27%2C%20%27info_aucun_rubrique%27%20=%3E%20%27No%20sections%27%2C-%27info_aucun_site%27%20=%3E%20%27No%20linked%20sites%27%2C-%27info_aucun_visiteur%27%20=%3E%20%27No%20visitors%27%2C%20%27info_aujourdhui%27%20=%3E%20%27today:%27%2C-%27info_auteur_message%27%20=%3E%20%27MESSAGE%20FROM:%27%2C%20%27info_auteurs%27%20=%3E%20%27Authors%27%2C%20%27info_auteurs_par_tri%27%20=%3E%20%27Authors%40partri%40%27%2C%20%27info_auteurs_trouves%27%20=%3E%20%27Authors%20found%27%2C%40%40%20-298%2C8%20%20254%2C6%20%40%40%20Do%20not%20submit%20this%20import%20request.%3Cp%3EFor%20more%20information%2C%20please%20see%20%3Ca%20href=?a=commitdiff_plain;h=dbba623b8bf23119add41931ed858a1fe489aa57;p=lhc%2Fweb%2Fwiklou.git Set minimum PHP version to 7.2.9 Bug: T234766 Change-Id: I25206df6d7bc1587c3e18b1015603b3d264017f7 --- diff --git a/INSTALL b/INSTALL index 0359166d22..4e072d396e 100644 --- a/INSTALL +++ b/INSTALL @@ -7,7 +7,7 @@ Starting with MediaWiki 1.2.0, it's possible to install and configure the wiki Required software as of MediaWiki 1.34.0: -* Web server with PHP 7.2.0 or higher, plus the following extesnsions: +* Web server with PHP 7.2.9 or higher, plus the following extensions: ** ctype ** dom ** fileinfo diff --git a/RELEASE-NOTES-1.34 b/RELEASE-NOTES-1.34 index 80f16294fb..89db7de944 100644 --- a/RELEASE-NOTES-1.34 +++ b/RELEASE-NOTES-1.34 @@ -624,7 +624,7 @@ because of Phabricator reports. * … == Compatibility == -MediaWiki 1.34 requires PHP 7.2.0 or later, and the following PHP extensions: +MediaWiki 1.34 requires PHP 7.2.9 or later, and the following PHP extensions: * ctype * dom diff --git a/composer.json b/composer.json index e08075345d..e95f3a0783 100644 --- a/composer.json +++ b/composer.json @@ -32,7 +32,7 @@ "pear/mail": "1.4.1", "pear/mail_mime": "1.10.2", "pear/net_smtp": "1.8.1", - "php": ">=7.2.0", + "php": ">=7.2.9", "psr/container": "1.0.0", "psr/log": "1.0.2", "wikimedia/assert": "0.2.2", diff --git a/includes/PHPVersionCheck.php b/includes/PHPVersionCheck.php index fe9a69c5d8..bf0a4036bf 100644 --- a/includes/PHPVersionCheck.php +++ b/includes/PHPVersionCheck.php @@ -95,7 +95,7 @@ class PHPVersionCheck { 'version' => PHP_VERSION, 'vendor' => 'the PHP Group', 'upstreamSupported' => '7.1.0', - 'minSupported' => '7.2.0', + 'minSupported' => '7.2.9', 'upgradeURL' => 'https://www.php.net/downloads.php', ); }