mirror of
https://github.com/chylex/Lightning-Tracker.git
synced 2024-09-14 05:42:44 +02: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';
|
|
?>
|