paths.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. | The public path contains the assets for your web application, such as
  20. | your JavaScript and CSS files, and also contains the primary entry
  21. | point for web requests into these applications from the outside.
  22. |
  23. */
  24. 'public' => __DIR__.'/../public',
  25. /*
  26. |--------------------------------------------------------------------------
  27. | Base Path
  28. |--------------------------------------------------------------------------
  29. |
  30. | The base path is the root of the Laravel installation. Most likely you
  31. | will not need to change this value. But, if for some wild reason it
  32. | is necessary you will do so here, just proceed with some caution.
  33. |
  34. */
  35. 'base' => __DIR__.'/..',
  36. /*
  37. |--------------------------------------------------------------------------
  38. | Storage Path
  39. |--------------------------------------------------------------------------
  40. |
  41. | The storage path is used by Laravel to store cached Blade views, logs
  42. | and other pieces of information. You may modify the path here when
  43. | you want to change the location of this directory for your apps.
  44. |
  45. */
  46. 'storage' => __DIR__.'/../storage',
  47. /*
  48. |--------------------------------------------------------------------------
  49. | Generator Paths
  50. |--------------------------------------------------------------------------
  51. |
  52. | These paths are used by the various class generators and other pieces
  53. | of the framework that need to determine where to store these types
  54. | of classes. Of course, they may be changed to any path you wish.
  55. |
  56. */
  57. 'commands' => __DIR__.'/../app/console',
  58. 'config' => __DIR__.'/../app/config',
  59. 'controllers' => __DIR__.'/../app/http/controllers',
  60. 'database' => __DIR__.'/../app/database',
  61. 'filters' => __DIR__.'/../app/http/filters',
  62. 'lang' => __DIR__.'/../app/lang',
  63. 'requests' => __DIR__.'/../app/http/requests',
  64. 'src' => __DIR__.'/../app/src',
  65. );