3 * This file is part of the TYPO3 CMS project.
5 * It is free software; you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License, either version 2
7 * of the License, or any later version.
9 * For the full copyright and license information, please read the
10 * LICENSE.txt file that was distributed with this source code.
12 * The TYPO3 project - inspiring people to share!
15 // Exit early if php requirement is not satisfied.
16 if (version_compare(PHP_VERSION
, '7.0.0', '<')) {
17 die('This version of TYPO3 CMS requires PHP 7.0 or above');
21 * Main entry point for all backend-related scripts.
23 call_user_func(function () {
24 $classLoader = require __DIR__
. '/../vendor/autoload.php';
25 (new \TYPO3\CMS\Backend\Http\
Application($classLoader))->run();