Skip to content

Commit ceb54f4

Browse files
committed
PHP req should be 5.4
Because of the json_encode option predefined consyants
1 parent 93d3112 commit ceb54f4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
}
2121
],
2222
"require": {
23-
"php": ">=5.3.9",
23+
"php": ">=5.4.0",
2424
"symfony/console": "2.8.*",
2525
"symfony/finder": "2.8.*"
2626
},

ext.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ public function is_enableable()
2828
/**
2929
* Check PHP requirements
3030
*
31-
* Requires PHP 5.3.9 or greater
31+
* Requires PHP 5.4.0 or greater
3232
* Requires PHP ZipArchive binary
3333
*
3434
* @return bool
3535
*/
3636
protected function php_requirements()
3737
{
38-
return phpbb_version_compare(PHP_VERSION, '5.3.9', '>=') && class_exists('ZipArchive');
38+
return phpbb_version_compare(PHP_VERSION, '5.4.0', '>=') && class_exists('ZipArchive');
3939
}
4040

4141
/**

0 commit comments

Comments
 (0)