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)
22 * This check avoids a parse error "unexpected 'class'" for users installing TYPO3 CMS 7
23 * on PHP 5.4. Without it the redirect to the install tool does not work.
24 * @see https://forge.typo3.org/issues/64504
26 if (version_compare(PHP_VERSION
, '5.5.0', '<')) {
27 die('TYPO3 CMS requires PHP 5.5 or above');
30 // Set up the application for the Frontend
31 call_user_func(function() {
32 $classLoader = require __DIR__
. '/typo3/contrib/vendor/autoload.php';
33 (new \TYPO3\CMS\Frontend\Http\
Application($classLoader))->run();