Skip to content

Commit c3c3713

Browse files
Chad Horohoelegoktm
Chad Horohoe
authored andcommittedFeb 10, 2016
Bump required PHP version to 5.5.9
Result of RfC and extensive discussion. RfC approved by Tim/ArchCom on 2016-01-27. Bug: T75901 Depends-On: I00e2e7adf5202384fc92371b8d0551782c3c17cb Change-Id: I68c5b5d60952418ff8300c163edfe2275571f41f
1 parent 79e51b5 commit c3c3713

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed
 

‎.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ matrix:
1212
fast_finish: true
1313
include:
1414
- env: dbtype=mysql
15-
php: 5.3
15+
php: 5.5
1616
- env: dbtype=postgres
17-
php: 5.3
17+
php: 5.5
1818
- env: dbtype=mysql
1919
php: hhvm
2020
- env: dbtype=mysql

‎INSTALL

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Starting with MediaWiki 1.2.0, it's possible to install and configure the wiki
66
"in-place", as long as you have the necessary prerequisites available.
77

88
Required software:
9-
* Web server with PHP 5.3.3 or higher.
9+
* Web server with PHP 5.5.9 or higher.
1010
* A SQL server, the following types are supported
1111
** MySQL 5.0.3 or higher
1212
** PostgreSQL 8.3 or higher

‎RELEASE-NOTES-1.27

+5-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ THIS IS NOT A RELEASE YET
88
MediaWiki 1.27 is an alpha-quality branch and is not recommended for use in
99
production.
1010

11+
=== PHP version requirement ===
12+
As of 1.27, MediaWiki now requires PHP 5.5.9 or higher. This corresponds with
13+
HHVM 3.1.
14+
1115
=== Configuration changes in 1.27 ===
1216
* $wgUseLinkNamespaceDBFields was removed.
1317
* Deprecated $wgResourceLoaderMinifierStatementsOnOwnLine and
@@ -314,7 +318,7 @@ changes to languages because of Phabricator reports.
314318

315319
== Compatibility ==
316320

317-
MediaWiki 1.27 requires PHP 5.3.3 or later. There is experimental support for
321+
MediaWiki 1.27 requires PHP 5.5.9 or later. There is experimental support for
318322
HHVM 3.6.5 or later.
319323

320324
MySQL is the recommended DBMS. PostgreSQL or SQLite can also be used, but

‎composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"mediawiki/at-ease": "1.1.0",
2424
"oojs/oojs-ui": "0.15.2",
2525
"oyejorge/less.php": "1.7.0.10",
26-
"php": ">=5.3.3",
26+
"php": ">=5.5.9",
2727
"psr/log": "1.0.0",
2828
"wikimedia/assert": "0.2.2",
2929
"wikimedia/base-convert": "1.0.1",

‎includes/PHPVersionCheck.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
*/
3232
function wfEntryPointCheck( $entryPoint ) {
3333
$mwVersion = '1.27';
34-
$minimumVersionPHP = '5.3.3';
34+
$minimumVersionPHP = '5.5.9';
3535
$phpVersion = PHP_VERSION;
3636

3737
if ( !function_exists( 'version_compare' )

0 commit comments

Comments
 (0)
Please sign in to comment.