index.php 1020 B

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