Skip to content

Commit

Permalink
Minimum PHP requirement was 5.6.4, not 5.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mahagr committed Apr 14, 2018
1 parent 8b0c1b7 commit ce1e635
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## mm/dd/2018

1. [](#new)
* Set minimum requirements to [PHP 5.6.0](https://getgrav.org/blog/raising-php-requirements-2018)
* Set minimum requirements to [PHP 5.6.4](https://getgrav.org/blog/raising-php-requirements-2018)
* Updated Doctrine Collections to 1.4
* Updated Symfony Components to 3.4, causing some compatibility issues with YAML files

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The underlying architecture of Grav is designed to use well-established and _bes

# Requirements

- PHP 5.6.0 or higher. Check the [required modules list](https://learn.getgrav.org/basics/requirements#php-requirements)
- PHP 5.6.4 or higher. Check the [required modules list](https://learn.getgrav.org/basics/requirements#php-requirements)
- Check the [Apache](https://learn.getgrav.org/basics/requirements#apache-requirements) or [IIS](https://learn.getgrav.org/basics/requirements#iis-requirements) requirements

# QuickStart
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"homepage": "http://getgrav.org",
"license": "MIT",
"require": {
"php": ">=5.6.0",
"php": ">=5.6.4",
"twig/twig": "~1.24",
"erusev/parsedown": "1.6.4",
"erusev/parsedown-extra": "~0.7",
Expand Down Expand Up @@ -45,7 +45,7 @@
},
"config": {
"platform": {
"php": "5.6.0"
"php": "5.6.4"
}
},
"repositories": [
Expand Down
6 changes: 3 additions & 3 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

namespace Grav;
define('GRAV_PHP_MIN', '5.6.0');
define('GRAV_PHP_MIN', '5.6.4');

// Ensure vendor libraries exist
$autoload = __DIR__ . '/vendor/autoload.php';
Expand Down
2 changes: 1 addition & 1 deletion system/defines.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
define('DS', '/');

if (!defined('GRAV_PHP_MIN')) {
define('GRAV_PHP_MIN', '5.6.0');
define('GRAV_PHP_MIN', '5.6.4');
}

// Directories and Paths
Expand Down

0 comments on commit ce1e635

Please sign in to comment.