TYPO3  7.6
index.php
Go to the documentation of this file.
1 <?php
2 /*
3  * This file is part of the TYPO3 CMS project.
4  *
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.
8  *
9  * For the full copyright and license information, please read the
10  * LICENSE.txt file that was distributed with this source code.
11  *
12  * The TYPO3 project - inspiring people to share!
13  */
14 
21 /*
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
25  */
26 if (version_compare(PHP_VERSION, '5.5.0', '<')) {
27  die('TYPO3 CMS requires PHP 5.5 or above');
28 }
29 
30 // Set up the application for the Frontend
31 call_user_func(function () {
32  $classLoader = require __DIR__ . '/typo3/../vendor/autoload.php';
33  (new \TYPO3\CMS\Frontend\Http\Application($classLoader))->run();
34 });