12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- * Laravel - A PHP Framework For Web Artisans
- *
- * @package Laravel
- * @version 3.2.7
- * @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';
|