No Description

app.php 8.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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' => 'JozBz0yQBrZ5kEcPvgxch3RR3E3INSGs',
  73. //
  74. // 'cipher' => MCRYPT_RIJNDAEL_256,
  75. 'key' => '+H!WZJxd5qwb!EHYR8^MLsX@^X6Y?e@+',
  76. 'cipher' => MCRYPT_RIJNDAEL_128,
  77. /*
  78. |--------------------------------------------------------------------------
  79. | Autoloaded Service Providers
  80. |--------------------------------------------------------------------------
  81. |
  82. | The service providers listed here will be automatically loaded on the
  83. | request to your application. Feel free to add your own services to
  84. | this array to grant expanded functionality to your applications.
  85. |
  86. */
  87. 'providers' => array(
  88. 'Illuminate\Foundation\Providers\ArtisanServiceProvider',
  89. 'Illuminate\Auth\AuthServiceProvider',
  90. 'Illuminate\Cache\CacheServiceProvider',
  91. 'Illuminate\Session\CommandsServiceProvider',
  92. 'Illuminate\Foundation\Providers\ConsoleSupportServiceProvider',
  93. 'Illuminate\Routing\ControllerServiceProvider',
  94. 'Illuminate\Cookie\CookieServiceProvider',
  95. 'Illuminate\Database\DatabaseServiceProvider',
  96. 'Illuminate\Encryption\EncryptionServiceProvider',
  97. 'Illuminate\Filesystem\FilesystemServiceProvider',
  98. 'Illuminate\Hashing\HashServiceProvider',
  99. 'Illuminate\Html\HtmlServiceProvider',
  100. 'Illuminate\Log\LogServiceProvider',
  101. 'Illuminate\Mail\MailServiceProvider',
  102. 'Illuminate\Database\MigrationServiceProvider',
  103. 'Illuminate\Pagination\PaginationServiceProvider',
  104. 'Illuminate\Queue\QueueServiceProvider',
  105. 'Illuminate\Redis\RedisServiceProvider',
  106. 'Illuminate\Remote\RemoteServiceProvider',
  107. 'Illuminate\Auth\Reminders\ReminderServiceProvider',
  108. 'Illuminate\Database\SeedServiceProvider',
  109. 'Illuminate\Session\SessionServiceProvider',
  110. 'Illuminate\Translation\TranslationServiceProvider',
  111. 'Illuminate\Validation\ValidationServiceProvider',
  112. 'Illuminate\View\ViewServiceProvider',
  113. 'Illuminate\Workbench\WorkbenchServiceProvider',
  114. 'Way\Generators\GeneratorsServiceProvider',
  115. 'Barryvdh\DomPDF\ServiceProvider',
  116. // 'Cornford\Backup\Providers\BackupServiceProvider',
  117. 'Zizaco\Entrust\EntrustServiceProvider',
  118. //To be able to use PDF
  119. //'Thujohn\Pdf\PdfServiceProvider',
  120. ),
  121. /*
  122. |--------------------------------------------------------------------------
  123. | Service Provider Manifest
  124. |--------------------------------------------------------------------------
  125. |
  126. | The service provider manifest is used by Laravel to lazy load service
  127. | providers which are not needed for each request, as well to keep a
  128. | list of all of the services. Here, you may set its storage spot.
  129. |
  130. */
  131. 'manifest' => storage_path() . '/meta',
  132. /*
  133. |--------------------------------------------------------------------------
  134. | Class Aliases
  135. |--------------------------------------------------------------------------
  136. |
  137. | This array of class aliases will be registered when this application
  138. | is started. However, feel free to register as many as you wish as
  139. | the aliases are "lazy" loaded so they don't hinder performance.
  140. |
  141. */
  142. 'aliases' => array(
  143. 'App' => 'Illuminate\Support\Facades\App',
  144. 'Artisan' => 'Illuminate\Support\Facades\Artisan',
  145. 'Auth' => 'Illuminate\Support\Facades\Auth',
  146. //'Backup' => 'Cornford\Backup\Facades\Backup',
  147. 'Filesystem' => 'Illuminate\Filesystem\Filesystem',
  148. 'Blade' => 'Illuminate\Support\Facades\Blade',
  149. 'Cache' => 'Illuminate\Support\Facades\Cache',
  150. 'ClassLoader' => 'Illuminate\Support\ClassLoader',
  151. 'Config' => 'Illuminate\Support\Facades\Config',
  152. 'Controller' => 'Illuminate\Routing\Controller',
  153. 'Cookie' => 'Illuminate\Support\Facades\Cookie',
  154. 'Crypt' => 'Illuminate\Support\Facades\Crypt',
  155. 'DB' => 'Illuminate\Support\Facades\DB',
  156. 'Eloquent' => 'Illuminate\Database\Eloquent\Model',
  157. 'Event' => 'Illuminate\Support\Facades\Event',
  158. 'File' => 'Illuminate\Support\Facades\File',
  159. 'Form' => 'Illuminate\Support\Facades\Form',
  160. 'Hash' => 'Illuminate\Support\Facades\Hash',
  161. 'HTML' => 'Illuminate\Support\Facades\HTML',
  162. 'Input' => 'Illuminate\Support\Facades\Input',
  163. 'Lang' => 'Illuminate\Support\Facades\Lang',
  164. 'Log' => 'Illuminate\Support\Facades\Log',
  165. 'Mail' => 'Illuminate\Support\Facades\Mail',
  166. 'Paginator' => 'Illuminate\Support\Facades\Paginator',
  167. 'Password' => 'Illuminate\Support\Facades\Password',
  168. 'Queue' => 'Illuminate\Support\Facades\Queue',
  169. 'Redirect' => 'Illuminate\Support\Facades\Redirect',
  170. 'Redis' => 'Illuminate\Support\Facades\Redis',
  171. 'Request' => 'Illuminate\Support\Facades\Request',
  172. 'Response' => 'Illuminate\Support\Facades\Response',
  173. 'Route' => 'Illuminate\Support\Facades\Route',
  174. 'Schema' => 'Illuminate\Support\Facades\Schema',
  175. 'Seeder' => 'Illuminate\Database\Seeder',
  176. 'Session' => 'Illuminate\Support\Facades\Session',
  177. 'SoftDeletingTrait' => 'Illuminate\Database\Eloquent\SoftDeletingTrait',
  178. 'SSH' => 'Illuminate\Support\Facades\SSH',
  179. 'Str' => 'Illuminate\Support\Str',
  180. 'URL' => 'Illuminate\Support\Facades\URL',
  181. 'Validator' => 'Illuminate\Support\Facades\Validator',
  182. 'View' => 'Illuminate\Support\Facades\View',
  183. 'PDF' => 'Barryvdh\DomPDF\Facade',
  184. //'PDF' => 'Thujohn\Pdf\PdfFacade',
  185. 'Entrust' => 'Zizaco\Entrust\EntrustFacade'
  186. ),
  187. );