index.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. $t = microtime(true);
  11. /*
  12. |--------------------------------------------------------------------------
  13. | Installation Paths
  14. |--------------------------------------------------------------------------
  15. |
  16. | Here you may specify the location of the various Laravel framework
  17. | directories for your installation.
  18. |
  19. | Of course, these are already set to the proper default values, so you do
  20. | not need to change them if you have not modified the directory structure.
  21. |
  22. */
  23. $application = '../application';
  24. $laravel = '../laravel';
  25. $packages = '../packages';
  26. $storage = '../storage';
  27. $public = __DIR__;
  28. /*
  29. |--------------------------------------------------------------------------
  30. | 3... 2... 1... Lift-off!
  31. |--------------------------------------------------------------------------
  32. */
  33. require $laravel.'/laravel.php';
  34. echo (microtime(true) - $t) * 1000;