No Description

app.php 7.9KB

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