mirror of
https://github.com/chylex/Lightning-Tracker.git
synced 2024-11-24 22:42:50 +01:00
13 lines
290 B
PHP
13 lines
290 B
PHP
<?php
|
|
/** @noinspection PhpMissingStrictTypesDeclarationInspection */
|
|
|
|
require __DIR__.'/c3.php';
|
|
|
|
/** @noinspection ConstantCanBeUsedInspection */
|
|
if (version_compare(PHP_VERSION, '7.4', '<')){
|
|
die('Lightning Tracker requires PHP 7.4 or newer.');
|
|
}
|
|
|
|
require __DIR__.'/bootstrap.php';
|
|
?>
|