diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2cf7a3f --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +composer.lock \ No newline at end of file diff --git a/requirements.php b/requirements.php index 5a2d910..c075760 100644 --- a/requirements.php +++ b/requirements.php @@ -11,7 +11,14 @@ */ // you may need to adjust this path to the correct Yii framework path -$frameworkPath = dirname(__FILE__) . '/../../yii'; +$frameworkPath = dirname(__FILE__) . '/vendor/yiisoft/yii2/yii.'; + +if (!is_dir($frameworkPath)) { + echo '

Error

'; + echo '

The path to yii framework seems to be incorrect.

'; + echo '

You need to install Yii framework via composer or adjust the framework path in file ' . basename(__FILE__) .'.

'; + echo '

Please refer to the README on how to install Yii.

'; +} require_once($frameworkPath . '/requirements/YiiRequirementChecker.php'); $requirementsChecker = new YiiRequirementChecker();