bootstrap.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | Installation Paths
  5. |--------------------------------------------------------------------------
  6. |
  7. | Here you may specify the location of the various Laravel framework
  8. | directories for your installation.
  9. |
  10. | Of course, these are already set to the proper default values, so you do
  11. | not need to change them if you have not modified the directory structure.
  12. |
  13. */
  14. $application = '../application';
  15. $laravel = '../laravel';
  16. $packages = '../packages';
  17. $storage = '../storage';
  18. $public = '../public';
  19. /*
  20. |--------------------------------------------------------------------------
  21. | Test Path Constants
  22. |--------------------------------------------------------------------------
  23. */
  24. define('FIXTURE_PATH', realpath('Fixtures').'/');
  25. /*
  26. |--------------------------------------------------------------------------
  27. | Bootstrap The Laravel Core
  28. |--------------------------------------------------------------------------
  29. */
  30. require realpath($laravel).'/bootstrap/core.php';