index.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. function elapsed()
  17. {
  18. return number_format((microtime(true) - START_TIME) * 1000, 2);
  19. }
  20. /*
  21. |--------------------------------------------------------------------------
  22. | Laravel Installation Paths
  23. |--------------------------------------------------------------------------
  24. |
  25. | Here you may specify the location of the various Laravel framework
  26. | directories for your installation.
  27. |
  28. | Of course, these are already set to the proper default values, so you do
  29. | not need to change them if you have not modified the directory structure.
  30. |
  31. */
  32. $application = '../application';
  33. $laravel = '../laravel';
  34. $packages = '../packages';
  35. $storage = '../storage';
  36. $public = __DIR__;
  37. /*
  38. |--------------------------------------------------------------------------
  39. | 3... 2... 1... Lift-off!
  40. |--------------------------------------------------------------------------
  41. */
  42. require $laravel.'/laravel.php';