app.php 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Application Debug Mode
  6. |--------------------------------------------------------------------------
  7. |
  8. | When your application is in debug mode, detailed error messages with
  9. | stack traces will be shown on every error that occurs within your
  10. | application. If disabled, a simple generic error page is shown.
  11. |
  12. */
  13. 'debug' => true,
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Application Timezone
  17. |--------------------------------------------------------------------------
  18. |
  19. | Here you may specify the default timezone for your application, which
  20. | will be used by the PHP date and date-time functions. We have gone
  21. | ahead and set this to a sensible default for you out of the box.
  22. |
  23. */
  24. 'timezone' => 'UTC',
  25. /*
  26. |--------------------------------------------------------------------------
  27. | Application Locale Configuration
  28. |--------------------------------------------------------------------------
  29. |
  30. | The application locale determines the default locale that will be used
  31. | by the translation service provider. You are free to set this value
  32. | to any of the locales which will be supported by the application.
  33. |
  34. */
  35. 'locale' => 'en',
  36. /*
  37. |--------------------------------------------------------------------------
  38. | Application Fallback Locale
  39. |--------------------------------------------------------------------------
  40. |
  41. | The fallback locale determines the locale to use when the current one
  42. | is not available. You may change the value to correspond to any of
  43. | the language folders that are provided through your application.
  44. |
  45. */
  46. 'fallback_locale' => 'en',
  47. /*
  48. |--------------------------------------------------------------------------
  49. | Encryption Key
  50. |--------------------------------------------------------------------------
  51. |
  52. | This key is used by the Illuminate encrypter service and should be set
  53. | to a random, long string, otherwise these encrypted values will not
  54. | be safe. Make sure to change it before deploying any application!
  55. |
  56. */
  57. 'key' => 'YourSecretKey!!!',
  58. /*
  59. |--------------------------------------------------------------------------
  60. | Autoloaded Service Providers
  61. |--------------------------------------------------------------------------
  62. |
  63. | The service providers listed here will be automatically loaded on the
  64. | request to your application. Feel free to add your own services to
  65. | this array to grant expanded functionality to your applications.
  66. |
  67. */
  68. 'providers' => array(
  69. 'Illuminate\Foundation\Providers\ArtisanServiceProvider',
  70. 'Illuminate\Auth\AuthServiceProvider',
  71. 'Illuminate\Cache\CacheServiceProvider',
  72. 'Illuminate\Foundation\Providers\CommandCreatorServiceProvider',
  73. 'Illuminate\Session\CommandsServiceProvider',
  74. 'Illuminate\Foundation\Providers\ComposerServiceProvider',
  75. 'Illuminate\Routing\ControllerServiceProvider',
  76. 'Illuminate\Cookie\CookieServiceProvider',
  77. 'Illuminate\Database\DatabaseServiceProvider',
  78. 'Illuminate\Encryption\EncryptionServiceProvider',
  79. 'Illuminate\Filesystem\FilesystemServiceProvider',
  80. 'Illuminate\Hashing\HashServiceProvider',
  81. 'Illuminate\Html\HtmlServiceProvider',
  82. 'Illuminate\Foundation\Providers\KeyGeneratorServiceProvider',
  83. 'Illuminate\Log\LogServiceProvider',
  84. 'Illuminate\Mail\MailServiceProvider',
  85. 'Illuminate\Database\MigrationServiceProvider',
  86. 'Illuminate\Foundation\Providers\OptimizeServiceProvider',
  87. 'Illuminate\Pagination\PaginationServiceProvider',
  88. 'Illuminate\Foundation\Providers\PublisherServiceProvider',
  89. 'Illuminate\Queue\QueueServiceProvider',
  90. 'Illuminate\Redis\RedisServiceProvider',
  91. 'Illuminate\Auth\Reminders\ReminderServiceProvider',
  92. 'Illuminate\Database\SeedServiceProvider',
  93. 'Illuminate\Foundation\Providers\ServerServiceProvider',
  94. 'Illuminate\Session\SessionServiceProvider',
  95. 'Illuminate\Foundation\Providers\TinkerServiceProvider',
  96. 'Illuminate\Translation\TranslationServiceProvider',
  97. 'Illuminate\Validation\ValidationServiceProvider',
  98. 'Illuminate\View\ViewServiceProvider',
  99. 'Illuminate\Workbench\WorkbenchServiceProvider',
  100. ),
  101. /*
  102. |--------------------------------------------------------------------------
  103. | Service Provider Manifest
  104. |--------------------------------------------------------------------------
  105. |
  106. | The service provider manifest is used by Laravel to lazy load service
  107. | providers which are not needed for each request, as well to keep a
  108. | list of all of the services. Here, you may set its storage spot.
  109. |
  110. */
  111. 'manifest' => __DIR__.'/../storage/meta',
  112. /*
  113. |--------------------------------------------------------------------------
  114. | Class Aliases
  115. |--------------------------------------------------------------------------
  116. |
  117. | This array of class aliases will be registered when this application
  118. | is started. However, feel free to register as many as you wish as
  119. | the aliases are "lazy" loaded so they don't hinder performance.
  120. |
  121. */
  122. 'aliases' => array(
  123. 'App' => 'Illuminate\Support\Facades\App',
  124. 'Artisan' => 'Illuminate\Support\Facades\Artisan',
  125. 'Auth' => 'Illuminate\Support\Facades\Auth',
  126. 'Blade' => 'Illuminate\Support\Facades\Blade',
  127. 'Cache' => 'Illuminate\Support\Facades\Cache',
  128. 'ClassLoader' => 'Illuminate\Support\ClassLoader',
  129. 'Config' => 'Illuminate\Support\Facades\Config',
  130. 'Controller' => 'Illuminate\Routing\Controllers\Controller',
  131. 'Cookie' => 'Illuminate\Support\Facades\Cookie',
  132. 'Crypt' => 'Illuminate\Support\Facades\Crypt',
  133. 'DB' => 'Illuminate\Support\Facades\DB',
  134. 'Eloquent' => 'Illuminate\Database\Eloquent\Model',
  135. 'Event' => 'Illuminate\Support\Facades\Event',
  136. 'File' => 'Illuminate\Support\Facades\File',
  137. 'Form' => 'Illuminate\Support\Facades\Form',
  138. 'Hash' => 'Illuminate\Support\Facades\Hash',
  139. 'Html' => 'Illuminate\Html\HtmlBuilder',
  140. 'Input' => 'Illuminate\Support\Facades\Input',
  141. 'Lang' => 'Illuminate\Support\Facades\Lang',
  142. 'Log' => 'Illuminate\Support\Facades\Log',
  143. 'Mail' => 'Illuminate\Support\Facades\Mail',
  144. 'Paginator' => 'Illuminate\Support\Facades\Paginator',
  145. 'Password' => 'Illuminate\Support\Facades\Password',
  146. 'Queue' => 'Illuminate\Support\Facades\Queue',
  147. 'Redirect' => 'Illuminate\Support\Facades\Redirect',
  148. 'Redis' => 'Illuminate\Support\Facades\Redis',
  149. 'Request' => 'Illuminate\Support\Facades\Request',
  150. 'Response' => 'Illuminate\Support\Facades\Response',
  151. 'Route' => 'Illuminate\Support\Facades\Route',
  152. 'Schema' => 'Illuminate\Support\Facades\Schema',
  153. 'Seeder' => 'Illuminate\Database\Seeder',
  154. 'Session' => 'Illuminate\Support\Facades\Session',
  155. 'Str' => 'Illuminate\Support\Str',
  156. 'URL' => 'Illuminate\Support\Facades\URL',
  157. 'Validator' => 'Illuminate\Support\Facades\Validator',
  158. 'View' => 'Illuminate\Support\Facades\View',
  159. ),
  160. );