app.php 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  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' => false,
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Application URL
  17. |--------------------------------------------------------------------------
  18. |
  19. | This URL is used by the console to properly generate URLs when using
  20. | the Artisan command line tool. You should set this to the root of
  21. | your application so that it is used when running Artisan tasks.
  22. |
  23. */
  24. 'url' => 'http://localhost',
  25. /*
  26. |--------------------------------------------------------------------------
  27. | Application Timezone
  28. |--------------------------------------------------------------------------
  29. |
  30. | Here you may specify the default timezone for your application, which
  31. | will be used by the PHP date and date-time functions. We have gone
  32. | ahead and set this to a sensible default for you out of the box.
  33. |
  34. */
  35. 'timezone' => 'UTC',
  36. /*
  37. |--------------------------------------------------------------------------
  38. | Application Locale Configuration
  39. |--------------------------------------------------------------------------
  40. |
  41. | The application locale determines the default locale that will be used
  42. | by the translation service provider. You are free to set this value
  43. | to any of the locales which will be supported by the application.
  44. |
  45. */
  46. 'locale' => 'en',
  47. /*
  48. |--------------------------------------------------------------------------
  49. | Application Fallback Locale
  50. |--------------------------------------------------------------------------
  51. |
  52. | The fallback locale determines the locale to use when the current one
  53. | is not available. You may change the value to correspond to any of
  54. | the language folders that are provided through your application.
  55. |
  56. */
  57. 'fallback_locale' => 'en',
  58. /*
  59. |--------------------------------------------------------------------------
  60. | Encryption Key
  61. |--------------------------------------------------------------------------
  62. |
  63. | This key is used by the Illuminate encrypter service and should be set
  64. | to a random, 32 character string, otherwise these encrypted strings
  65. | will not be safe. Please do this before deploying an application!
  66. |
  67. */
  68. 'key' => 'YourSecretKey!!!',
  69. 'cipher' => MCRYPT_RIJNDAEL_128,
  70. /*
  71. |--------------------------------------------------------------------------
  72. | Autoloaded Service Providers
  73. |--------------------------------------------------------------------------
  74. |
  75. | The service providers listed here will be automatically loaded on the
  76. | request to your application. Feel free to add your own services to
  77. | this array to grant expanded functionality to your applications.
  78. |
  79. */
  80. 'providers' => array(
  81. /*
  82. * Application Service Providers...
  83. */
  84. 'App\Providers\AppServiceProvider',
  85. 'App\Providers\ArtisanServiceProvider',
  86. 'App\Providers\ErrorServiceProvider',
  87. 'App\Providers\EventServiceProvider',
  88. 'App\Providers\FilterServiceProvider',
  89. 'App\Providers\LogServiceProvider',
  90. 'App\Providers\RouteServiceProvider',
  91. /*
  92. * Laravel Framework Service Providers...
  93. */
  94. 'Illuminate\Foundation\Providers\ArtisanServiceProvider',
  95. 'Illuminate\Auth\AuthServiceProvider',
  96. 'Illuminate\Cache\CacheServiceProvider',
  97. 'Illuminate\Foundation\Providers\ConsoleSupportServiceProvider',
  98. 'Illuminate\Cookie\CookieServiceProvider',
  99. 'Illuminate\Database\DatabaseServiceProvider',
  100. 'Illuminate\Encryption\EncryptionServiceProvider',
  101. 'Illuminate\Filesystem\FilesystemServiceProvider',
  102. 'Illuminate\Foundation\Providers\FormRequestServiceProvider',
  103. 'Illuminate\Hashing\HashServiceProvider',
  104. 'Illuminate\Html\HtmlServiceProvider',
  105. 'Illuminate\Log\LogServiceProvider',
  106. 'Illuminate\Mail\MailServiceProvider',
  107. 'Illuminate\Database\MigrationServiceProvider',
  108. 'Illuminate\Pagination\PaginationServiceProvider',
  109. 'Illuminate\Queue\QueueServiceProvider',
  110. 'Illuminate\Redis\RedisServiceProvider',
  111. 'Illuminate\Remote\RemoteServiceProvider',
  112. 'Illuminate\Auth\Reminders\ReminderServiceProvider',
  113. 'Illuminate\Database\SeedServiceProvider',
  114. 'Illuminate\Session\SessionServiceProvider',
  115. 'Illuminate\Translation\TranslationServiceProvider',
  116. 'Illuminate\Validation\ValidationServiceProvider',
  117. 'Illuminate\View\ViewServiceProvider',
  118. ),
  119. /*
  120. |--------------------------------------------------------------------------
  121. | Service Provider Manifest
  122. |--------------------------------------------------------------------------
  123. |
  124. | The service provider manifest is used by Laravel to lazy load service
  125. | providers which are not needed for each request, as well to keep a
  126. | list of all of the services. Here, you may set its storage spot.
  127. |
  128. */
  129. 'manifest' => storage_path().'/meta',
  130. /*
  131. |--------------------------------------------------------------------------
  132. | Class Aliases
  133. |--------------------------------------------------------------------------
  134. |
  135. | This array of class aliases will be registered when this application
  136. | is started. However, feel free to register as many as you wish as
  137. | the aliases are "lazy" loaded so they don't hinder performance.
  138. |
  139. */
  140. 'aliases' => array(
  141. 'App' => 'Illuminate\Support\Facades\App',
  142. 'Artisan' => 'Illuminate\Support\Facades\Artisan',
  143. 'Auth' => 'Illuminate\Support\Facades\Auth',
  144. 'Blade' => 'Illuminate\Support\Facades\Blade',
  145. 'Cache' => 'Illuminate\Support\Facades\Cache',
  146. 'Config' => 'Illuminate\Support\Facades\Config',
  147. 'Controller' => 'Illuminate\Routing\Controller',
  148. 'Cookie' => 'Illuminate\Support\Facades\Cookie',
  149. 'Crypt' => 'Illuminate\Support\Facades\Crypt',
  150. 'DB' => 'Illuminate\Support\Facades\DB',
  151. 'Eloquent' => 'Illuminate\Database\Eloquent\Model',
  152. 'Event' => 'Illuminate\Support\Facades\Event',
  153. 'File' => 'Illuminate\Support\Facades\File',
  154. 'Form' => 'Illuminate\Support\Facades\Form',
  155. 'FormRequest' => 'Illuminate\Foundation\Http\FormRequest',
  156. 'Hash' => 'Illuminate\Support\Facades\Hash',
  157. 'HTML' => 'Illuminate\Support\Facades\HTML',
  158. 'Input' => 'Illuminate\Support\Facades\Input',
  159. 'Lang' => 'Illuminate\Support\Facades\Lang',
  160. 'Log' => 'Illuminate\Support\Facades\Log',
  161. 'Mail' => 'Illuminate\Support\Facades\Mail',
  162. 'Paginator' => 'Illuminate\Support\Facades\Paginator',
  163. 'Password' => 'Illuminate\Support\Facades\Password',
  164. 'Queue' => 'Illuminate\Support\Facades\Queue',
  165. 'Redirect' => 'Illuminate\Support\Facades\Redirect',
  166. 'Redis' => 'Illuminate\Support\Facades\Redis',
  167. 'Request' => 'Illuminate\Support\Facades\Request',
  168. 'Response' => 'Illuminate\Support\Facades\Response',
  169. 'Route' => 'Illuminate\Support\Facades\Route',
  170. 'Schema' => 'Illuminate\Support\Facades\Schema',
  171. 'Seeder' => 'Illuminate\Database\Seeder',
  172. 'Session' => 'Illuminate\Support\Facades\Session',
  173. 'SoftDeletingTrait' => 'Illuminate\Database\Eloquent\SoftDeletingTrait',
  174. 'SSH' => 'Illuminate\Support\Facades\SSH',
  175. 'Str' => 'Illuminate\Support\Str',
  176. 'URL' => 'Illuminate\Support\Facades\URL',
  177. 'Validator' => 'Illuminate\Support\Facades\Validator',
  178. 'View' => 'Illuminate\Support\Facades\View',
  179. ),
  180. );