No Description

app.php 7.9KB

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