bootstrap.php 836 B

12345678910111213141516171819202122232425262728293031323334
  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 = 'public';
  27. require realpath($laravel).'/bootstrap.php';