app.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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 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' => '',
  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' => 'Europe/Berlin',
  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' => 'de',
  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, 32 character string, otherwise these encrypted strings
  54. | will not be safe. Please do this before deploying an application!
  55. |
  56. */
  57. 'key' => '2qpXAWgHRibo9JD7YkmA991pdbFAWkJE',
  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\Foundation\Providers\MaintenanceServiceProvider',
  86. 'Illuminate\Database\MigrationServiceProvider',
  87. 'Illuminate\Foundation\Providers\OptimizeServiceProvider',
  88. 'Illuminate\Pagination\PaginationServiceProvider',
  89. 'Illuminate\Foundation\Providers\PublisherServiceProvider',
  90. 'Illuminate\Queue\QueueServiceProvider',
  91. 'Illuminate\Redis\RedisServiceProvider',
  92. 'Illuminate\Auth\Reminders\ReminderServiceProvider',
  93. 'Illuminate\Foundation\Providers\RouteListServiceProvider',
  94. 'Illuminate\Database\SeedServiceProvider',
  95. 'Illuminate\Foundation\Providers\ServerServiceProvider',
  96. 'Illuminate\Session\SessionServiceProvider',
  97. 'Illuminate\Foundation\Providers\TinkerServiceProvider',
  98. 'Illuminate\Translation\TranslationServiceProvider',
  99. 'Illuminate\Validation\ValidationServiceProvider',
  100. 'Illuminate\View\ViewServiceProvider',
  101. 'Illuminate\Workbench\WorkbenchServiceProvider',
  102. ),
  103. /*
  104. |--------------------------------------------------------------------------
  105. | Service Provider Manifest
  106. |--------------------------------------------------------------------------
  107. |
  108. | The service provider manifest is used by Laravel to lazy load service
  109. | providers which are not needed for each request, as well to keep a
  110. | list of all of the services. Here, you may set its storage spot.
  111. |
  112. */
  113. 'manifest' => storage_path().'/meta',
  114. /*
  115. |--------------------------------------------------------------------------
  116. | Class Aliases
  117. |--------------------------------------------------------------------------
  118. |
  119. | This array of class aliases will be registered when this application
  120. | is started. However, feel free to register as many as you wish as
  121. | the aliases are "lazy" loaded so they don't hinder performance.
  122. |
  123. */
  124. 'aliases' => array(
  125. 'App' => 'Illuminate\Support\Facades\App',
  126. 'Artisan' => 'Illuminate\Support\Facades\Artisan',
  127. 'Auth' => 'Illuminate\Support\Facades\Auth',
  128. 'Blade' => 'Illuminate\Support\Facades\Blade',
  129. 'Cache' => 'Illuminate\Support\Facades\Cache',
  130. 'ClassLoader' => 'Illuminate\Support\ClassLoader',
  131. 'Config' => 'Illuminate\Support\Facades\Config',
  132. 'Controller' => 'Illuminate\Routing\Controllers\Controller',
  133. 'Cookie' => 'Illuminate\Support\Facades\Cookie',
  134. 'Crypt' => 'Illuminate\Support\Facades\Crypt',
  135. 'DB' => 'Illuminate\Support\Facades\DB',
  136. 'Eloquent' => 'Illuminate\Database\Eloquent\Model',
  137. 'Event' => 'Illuminate\Support\Facades\Event',
  138. 'File' => 'Illuminate\Support\Facades\File',
  139. 'Form' => 'Illuminate\Support\Facades\Form',
  140. 'Hash' => 'Illuminate\Support\Facades\Hash',
  141. 'HTML' => 'Illuminate\Support\Facades\HTML',
  142. 'Input' => 'Illuminate\Support\Facades\Input',
  143. 'Lang' => 'Illuminate\Support\Facades\Lang',
  144. 'Log' => 'Illuminate\Support\Facades\Log',
  145. 'Mail' => 'Illuminate\Support\Facades\Mail',
  146. 'Paginator' => 'Illuminate\Support\Facades\Paginator',
  147. 'Password' => 'Illuminate\Support\Facades\Password',
  148. 'Queue' => 'Illuminate\Support\Facades\Queue',
  149. 'Redirect' => 'Illuminate\Support\Facades\Redirect',
  150. 'Redis' => 'Illuminate\Support\Facades\Redis',
  151. 'Request' => 'Illuminate\Support\Facades\Request',
  152. 'Response' => 'Illuminate\Support\Facades\Response',
  153. 'Route' => 'Illuminate\Support\Facades\Route',
  154. 'Schema' => 'Illuminate\Support\Facades\Schema',
  155. 'Seeder' => 'Illuminate\Database\Seeder',
  156. 'Session' => 'Illuminate\Support\Facades\Session',
  157. 'Str' => 'Illuminate\Support\Str',
  158. 'URL' => 'Illuminate\Support\Facades\URL',
  159. 'Validator' => 'Illuminate\Support\Facades\Validator',
  160. 'View' => 'Illuminate\Support\Facades\View',
  161. ),
  162. );