app.php 7.4 KB

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