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!
16 * This is the MAIN DOCUMENT of the TypoScript driven standard frontend.
17 * Basically this is the "index.php" script which all requests for TYPO3
18 * delivered pages goes to in the frontend (the website)
21 // Exit early if php requirement is not satisfied.
22 if (version_compare(PHP_VERSION
, '7.0.0', '<')) {
23 die('This version of TYPO3 CMS requires PHP 7.0 or above');
26 // Set up the application for the Frontend
27 call_user_func(function () {
28 $classLoader = require rtrim(realpath(__DIR__
. '/typo3'), '\\/') . '/../vendor/autoload.php';
29 (new \TYPO3\CMS\Frontend\Http\
Application($classLoader))->run();