laravel/public/index.php
aeberhardo 44f82b18d8 Incremented version from 3.2.13 to 3.2.14
Signed-off-by: aeberhardo <aeberhard@gmx.ch>
2013-04-09 10:23:07 +02:00

34 lines
1.1 KiB
PHP

<?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @version 3.2.14
* @author Taylor Otwell <taylorotwell@gmail.com>
* @link http://laravel.com
*/
// --------------------------------------------------------------
// Tick... Tock... Tick... Tock...
// --------------------------------------------------------------
define('LARAVEL_START', microtime(true));
// --------------------------------------------------------------
// Indicate that the request is from the web.
// --------------------------------------------------------------
$web = true;
// --------------------------------------------------------------
// Set the core Laravel path constants.
// --------------------------------------------------------------
require '../paths.php';
// --------------------------------------------------------------
// Unset the temporary web variable.
// --------------------------------------------------------------
unset($web);
// --------------------------------------------------------------
// Launch Laravel.
// --------------------------------------------------------------
require path('sys').'laravel.php';