index.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. /**
  3. * Laravel - A clean and classy framework for PHP web development.
  4. *
  5. * @package Laravel
  6. * @version 2.0.0
  7. * @author Taylor Otwell <taylorotwell@gmail.com>
  8. * @link http://laravel.com
  9. */
  10. /*
  11. |--------------------------------------------------------------------------
  12. | Tick... Tock... Tick... Tock
  13. |--------------------------------------------------------------------------
  14. */
  15. define('START_TIME', microtime(true));
  16. /*
  17. |--------------------------------------------------------------------------
  18. | Laravel Installation Paths
  19. |--------------------------------------------------------------------------
  20. |
  21. | Here you may specify the location of the various Laravel framework
  22. | directories for your installation.
  23. |
  24. | Of course, these are already set to the proper default values, so you do
  25. | not need to change them if you have not modified the directory structure.
  26. |
  27. */
  28. $application = '../application';
  29. $laravel = '../laravel';
  30. $packages = '../packages';
  31. $storage = '../storage';
  32. $public = __DIR__;
  33. /*
  34. |--------------------------------------------------------------------------
  35. | 3... 2... 1... Lift-off!
  36. |--------------------------------------------------------------------------
  37. */
  38. require $laravel.'/laravel.php';