mirror of
https://github.com/chylex/Lightning-Tracker.git
synced 2025-03-17 19:15:44 +01:00
10 lines
261 B
PHP
10 lines
261 B
PHP
<?php
|
|
/** @noinspection PhpMissingStrictTypesDeclarationInspection */
|
|
/** @noinspection ConstantCanBeUsedInspection */
|
|
if (version_compare(PHP_VERSION, '7.4', '<')){
|
|
die('Lightning Tracker requires PHP 7.4 or newer.');
|
|
}
|
|
|
|
require __DIR__.'/bootstrap.php';
|
|
?>
|