PageRenderTime 27ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/app/config/app.php

https://gitlab.com/fabiorf/edigital
PHP | 194 lines | 79 code | 25 blank | 90 comment | 0 complexity | c3efca06aa6a75ceec0dbd12db1c609a MD5 | raw file
  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' => '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' => 'America/Sao_Paulo',
  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' => 'apz3YYAfMmGxFZxpQlAewBPrkoouLnYl',
  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. 'Illuminate\Foundation\Providers\ArtisanServiceProvider',
  82. 'Illuminate\Auth\AuthServiceProvider',
  83. 'Illuminate\Cache\CacheServiceProvider',
  84. 'Illuminate\Session\CommandsServiceProvider',
  85. 'Illuminate\Foundation\Providers\ConsoleSupportServiceProvider',
  86. 'Illuminate\Routing\ControllerServiceProvider',
  87. 'Illuminate\Cookie\CookieServiceProvider',
  88. 'Illuminate\Database\DatabaseServiceProvider',
  89. 'Illuminate\Encryption\EncryptionServiceProvider',
  90. 'Illuminate\Filesystem\FilesystemServiceProvider',
  91. 'Illuminate\Hashing\HashServiceProvider',
  92. 'Illuminate\Html\HtmlServiceProvider',
  93. 'Illuminate\Log\LogServiceProvider',
  94. 'Illuminate\Mail\MailServiceProvider',
  95. 'Illuminate\Database\MigrationServiceProvider',
  96. 'Illuminate\Pagination\PaginationServiceProvider',
  97. 'Illuminate\Queue\QueueServiceProvider',
  98. 'Illuminate\Redis\RedisServiceProvider',
  99. 'Illuminate\Remote\RemoteServiceProvider',
  100. 'Illuminate\Auth\Reminders\ReminderServiceProvider',
  101. 'Illuminate\Database\SeedServiceProvider',
  102. 'Illuminate\Session\SessionServiceProvider',
  103. 'Illuminate\Translation\TranslationServiceProvider',
  104. 'Illuminate\Validation\ValidationServiceProvider',
  105. 'Illuminate\View\ViewServiceProvider',
  106. 'Illuminate\Workbench\WorkbenchServiceProvider',
  107. ),
  108. /*
  109. |--------------------------------------------------------------------------
  110. | Service Provider Manifest
  111. |--------------------------------------------------------------------------
  112. |
  113. | The service provider manifest is used by Laravel to lazy load service
  114. | providers which are not needed for each request, as well to keep a
  115. | list of all of the services. Here, you may set its storage spot.
  116. |
  117. */
  118. 'manifest' => storage_path().'/meta',
  119. /*
  120. |--------------------------------------------------------------------------
  121. | Class Aliases
  122. |--------------------------------------------------------------------------
  123. |
  124. | This array of class aliases will be registered when this application
  125. | is started. However, feel free to register as many as you wish as
  126. | the aliases are "lazy" loaded so they don't hinder performance.
  127. |
  128. */
  129. 'aliases' => array(
  130. 'App' => 'Illuminate\Support\Facades\App',
  131. 'Artisan' => 'Illuminate\Support\Facades\Artisan',
  132. 'Auth' => 'Illuminate\Support\Facades\Auth',
  133. 'Blade' => 'Illuminate\Support\Facades\Blade',
  134. 'Cache' => 'Illuminate\Support\Facades\Cache',
  135. 'ClassLoader' => 'Illuminate\Support\ClassLoader',
  136. 'Config' => 'Illuminate\Support\Facades\Config',
  137. 'Controller' => 'Illuminate\Routing\Controller',
  138. 'Cookie' => 'Illuminate\Support\Facades\Cookie',
  139. 'Crypt' => 'Illuminate\Support\Facades\Crypt',
  140. 'DB' => 'Illuminate\Support\Facades\DB',
  141. 'Eloquent' => 'Illuminate\Database\Eloquent\Model',
  142. 'Event' => 'Illuminate\Support\Facades\Event',
  143. 'File' => 'Illuminate\Support\Facades\File',
  144. 'Form' => 'Illuminate\Support\Facades\Form',
  145. 'Hash' => 'Illuminate\Support\Facades\Hash',
  146. 'HTML' => 'Illuminate\Support\Facades\HTML',
  147. 'Input' => 'Illuminate\Support\Facades\Input',
  148. 'Lang' => 'Illuminate\Support\Facades\Lang',
  149. 'Log' => 'Illuminate\Support\Facades\Log',
  150. 'Mail' => 'Illuminate\Support\Facades\Mail',
  151. 'Paginator' => 'Illuminate\Support\Facades\Paginator',
  152. 'Password' => 'Illuminate\Support\Facades\Password',
  153. 'Queue' => 'Illuminate\Support\Facades\Queue',
  154. 'Redirect' => 'Illuminate\Support\Facades\Redirect',
  155. 'Redis' => 'Illuminate\Support\Facades\Redis',
  156. 'Request' => 'Illuminate\Support\Facades\Request',
  157. 'Response' => 'Illuminate\Support\Facades\Response',
  158. 'Route' => 'Illuminate\Support\Facades\Route',
  159. 'Schema' => 'Illuminate\Support\Facades\Schema',
  160. 'Seeder' => 'Illuminate\Database\Seeder',
  161. 'Session' => 'Illuminate\Support\Facades\Session',
  162. 'SoftDeletingTrait' => 'Illuminate\Database\Eloquent\SoftDeletingTrait',
  163. 'SSH' => 'Illuminate\Support\Facades\SSH',
  164. 'Str' => 'Illuminate\Support\Str',
  165. 'URL' => 'Illuminate\Support\Facades\URL',
  166. 'Validator' => 'Illuminate\Support\Facades\Validator',
  167. 'View' => 'Illuminate\Support\Facades\View',
  168. ),
  169. );