diff options
| author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-09-28 17:40:24 +0200 |
|---|---|---|
| committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-10-04 16:19:48 +0200 |
| commit | f3dc2a801d7e077e5e10a143b8d450b0b4a3aa11 (patch) | |
| tree | df362ae768224100e004c6a0f40ee21f7c7cf68f /phpBB/phpbb | |
| parent | a342517dfb877e6d1cb0b489f7caa6f54e12bca5 (diff) | |
| download | forums-f3dc2a801d7e077e5e10a143b8d450b0b4a3aa11.tar forums-f3dc2a801d7e077e5e10a143b8d450b0b4a3aa11.tar.gz forums-f3dc2a801d7e077e5e10a143b8d450b0b4a3aa11.tar.bz2 forums-f3dc2a801d7e077e5e10a143b8d450b0b4a3aa11.tar.xz forums-f3dc2a801d7e077e5e10a143b8d450b0b4a3aa11.zip | |
[ticket/14205] Bump PHP requirement to PHP 5.4
PHPBB3-14205
Diffstat (limited to 'phpBB/phpbb')
| -rw-r--r-- | phpBB/phpbb/composer.json | 2 | ||||
| -rw-r--r-- | phpBB/phpbb/install/module/requirements/task/check_server_environment.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/composer.json b/phpBB/phpbb/composer.json index 175be4b0ab..8241091dc1 100644 --- a/phpBB/phpbb/composer.json +++ b/phpBB/phpbb/composer.json @@ -22,6 +22,6 @@ "classmap": [""] }, "require": { - "php": ">=5.3.9" + "php": ">=5.4" } } diff --git a/phpBB/phpbb/install/module/requirements/task/check_server_environment.php b/phpBB/phpbb/install/module/requirements/task/check_server_environment.php index 50efdc55a2..62485a2097 100644 --- a/phpBB/phpbb/install/module/requirements/task/check_server_environment.php +++ b/phpBB/phpbb/install/module/requirements/task/check_server_environment.php @@ -95,7 +95,7 @@ class check_server_environment extends \phpbb\install\task_base { $php_version = PHP_VERSION; - if (version_compare($php_version, '5.3.9') < 0) + if (version_compare($php_version, '5.4') < 0) { $this->response_helper->add_error_message('PHP_VERSION_REQD', 'PHP_VERSION_REQD_EXPLAIN'); |
