Skip to content

Commit

Permalink
システム要件チェックが更新されてないのを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
chihiro-adachi committed Feb 7, 2023
1 parent e4ddd5a commit 7e599b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
use Symfony\Component\HttpFoundation\Request;

// システム要件チェック
if (version_compare(PHP_VERSION, '7.3.0') < 0) {
die('Your PHP installation is too old. EC-CUBE requires at least PHP 7.3.0. See the <a href="http://www.ec-cube.net/product/system.php" target="_blank">system requirements</a> page for more information.');
if (version_compare(PHP_VERSION, '7.4.0') < 0) {
die('Your PHP installation is too old. EC-CUBE requires at least PHP 7.4.0. See the <a href="https://doc4.ec-cube.net/quickstart/requirement" target="_blank">system requirements</a> page for more information.');
}

$autoload = __DIR__.'/vendor/autoload.php';
Expand Down

0 comments on commit 7e599b4

Please sign in to comment.