paths.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Application Path
  6. |--------------------------------------------------------------------------
  7. |
  8. | Here we just defined the path to the application directory. Most likely
  9. | you will never need to change this value as the default setup should
  10. | work perfectly fine for the vast majority of all our applications.
  11. |
  12. */
  13. 'app' => __DIR__.'/../app',
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Public Path
  17. |--------------------------------------------------------------------------
  18. |
  19. | We understand that not all hosting environments allow flexibility with
  20. | public paths. That's why we allow you to change where your public path
  21. | is below.
  22. |
  23. */
  24. 'public' => __DIR__.'/../public',
  25. /*
  26. |-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
  27. | Base Path
  28. |-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
  29. |
  30. | You probably shouldn't be editing this.
  31. |
  32. */
  33. 'base' => __DIR__.'/..',
  34. );