2011-06-08 23:45:08 -05:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Laravel - A clean and classy framework for PHP web development.
|
|
|
|
|
*
|
|
|
|
|
* @package Laravel
|
2011-11-14 21:18:41 -06:00
|
|
|
* @version 2.0.0 Beta 2
|
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-09-03 23:50:03 -05:00
|
|
|
|
2011-11-12 00:08:09 -06:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
// Tick... Tock... Tick... Tock...
|
|
|
|
|
// --------------------------------------------------------------
|
2011-11-02 21:27:43 -05:00
|
|
|
define('LARAVEL_START', microtime(true));
|
|
|
|
|
|
2011-11-01 23:51:14 -05:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
// The path to the application directory.
|
|
|
|
|
// --------------------------------------------------------------
|
2011-08-23 21:04:40 -05:00
|
|
|
$application = '../application';
|
2011-08-19 20:12:39 -05:00
|
|
|
|
2011-11-01 23:51:14 -05:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
// The path to the Laravel directory.
|
|
|
|
|
// --------------------------------------------------------------
|
2011-11-02 21:27:43 -05:00
|
|
|
$laravel = '../laravel';
|
2011-08-03 22:10:07 -05:00
|
|
|
|
2011-11-01 23:51:14 -05:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
// The path to the public directory.
|
|
|
|
|
// --------------------------------------------------------------
|
2011-11-02 21:27:43 -05:00
|
|
|
$public = __DIR__;
|
2011-06-08 23:45:08 -05:00
|
|
|
|
2011-11-01 23:51:14 -05:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
// Launch Laravel.
|
|
|
|
|
// --------------------------------------------------------------
|
2011-11-12 00:08:09 -06:00
|
|
|
require $laravel.'/laravel.php';
|