diff options
| author | 2021-01-14 17:28:45 -0500 | |
|---|---|---|
| committer | 2021-01-14 23:28:45 +0100 | |
| commit | 29fe125b4a18f7107b50e54c69184c4f1777bbf6 (patch) | |
| tree | d76446252588f6db51b50a697ff7649894817aa2 /constants.php | |
| parent | e3457f7d7b56509048e3c1f53f05f278656e976c (diff) | |
Add constant for PHP requirements (#3369)
* Add constant for PHP requirements
This new constant is used for PHP version check.
This way, we won't forget to modify some part of the code base.
* Remove PHP version checks
Some checks were obsolete because they were checking unsupported
PHP versions.
Diffstat (limited to 'constants.php')
| -rw-r--r-- | constants.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/constants.php b/constants.php index 02a2cf8fa..7616195b6 100644 --- a/constants.php +++ b/constants.php @@ -2,6 +2,7 @@ //NB: Do not edit; use ./constants.local.php instead. //<Not customisable> +define('FRESHRSS_MIN_PHP_VERSION', '5.6.0'); define('FRESHRSS_VERSION', '1.17.1-dev'); define('FRESHRSS_WEBSITE', 'https://freshrss.org'); define('FRESHRSS_WIKI', 'https://freshrss.github.io/FreshRSS/'); |
