laravel/public/index.php

41 lines
1.0 KiB
PHP
Raw Normal View History

2011-06-08 23:45:08 -05:00
<?php
/**
* Laravel - A clean and classy framework for PHP web development.
*
* @package Laravel
2011-08-18 19:56:29 -05:00
* @version 2.0.0
2011-08-23 21:04:40 -05:00
* @author Taylor Otwell <taylorotwell@gmail.com>
2011-07-25 23:32:25 -05:00
* @link http://laravel.com
2011-06-08 23:45:08 -05:00
*/
2011-08-19 20:12:39 -05:00
/*
|--------------------------------------------------------------------------
2011-09-08 17:49:16 -05:00
| Tick... Tock... Tick... Tock
|--------------------------------------------------------------------------
*/
2011-09-08 17:49:16 -05:00
define('START_TIME', microtime(true));
/*
|--------------------------------------------------------------------------
2011-09-09 21:02:10 -05:00
| Laravel Installation Paths
2011-08-19 20:12:39 -05:00
|--------------------------------------------------------------------------
*/
2011-08-23 21:04:40 -05:00
$application = '../application';
2011-08-19 20:12:39 -05:00
2011-08-23 21:04:40 -05:00
$laravel = '../laravel';
2011-08-03 22:10:07 -05:00
2011-08-23 21:04:40 -05:00
$storage = '../storage';
$public = __DIR__;
2011-06-08 23:45:08 -05:00
2011-08-19 20:12:39 -05:00
/*
|--------------------------------------------------------------------------
| 3... 2... 1... Lift-off!
|--------------------------------------------------------------------------
*/
2011-09-29 21:22:48 -05:00
require $laravel.'/laravel.php';
echo number_format((microtime(true) - START_TIME) * 1000, 2);