Skip to content

Commit

Permalink
Merge pull request #70 from marc-farre/enh/69-add-requirements-file
Browse files Browse the repository at this point in the history
Enh #69: Add requirements.php
  • Loading branch information
luke- authored Feb 28, 2024
2 parents 2c36b44 + 8600b54 commit 13f5ab9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

Unreleased
------------------------
- Enh #69: Add `requirements.php`

1.4.2 (January 19, 2023)
-----------------------
- Enh #57: Tests for `next` version
Expand Down
7 changes: 7 additions & 0 deletions requirements.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php

if (!Yii::$app->getModule('calendar')) {
return 'You must first install and enable the Calendar module.';
}

return null;

0 comments on commit 13f5ab9

Please sign in to comment.