Advertisement
Guest User

The coolest document in the world! :D

a guest
Dec 22nd, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.67 KB | None | 0 0
  1. <?php
  2.  
  3. return array(
  4.  
  5. /*
  6. |--------------------------------------------------------------------------
  7. | Application Debug Mode
  8. |--------------------------------------------------------------------------
  9. |
  10. | When your application is in debug mode, detailed error messages with
  11. | stack traces will be shown on every error that occurs within your
  12. | application. If disabled, a simple generic error page is shown.
  13. |
  14. */
  15.  
  16. 'debug' => true,
  17.  
  18. /*
  19. |--------------------------------------------------------------------------
  20. | Application URL
  21. |--------------------------------------------------------------------------
  22. |
  23. | This URL is used by the console to properly generate URLs when using
  24. | the Artisan command line tool. You should set this to the root of
  25. | your application so that it is used when running Artisan tasks.
  26. |
  27. */
  28.  
  29. 'url' => 'http://localhost',
  30.  
  31. /*
  32. |--------------------------------------------------------------------------
  33. | Application Timezone
  34. |--------------------------------------------------------------------------
  35. |
  36. | Here you may specify the default timezone for your application, which
  37. | will be used by the PHP date and date-time functions. We have gone
  38. | ahead and set this to a sensible default for you out of the box.
  39. |
  40. */
  41.  
  42. 'timezone' => 'UTC',
  43.  
  44. /*
  45. |--------------------------------------------------------------------------
  46. | Application Locale Configuration
  47. |--------------------------------------------------------------------------
  48. |
  49. | The application locale determines the default locale that will be used
  50. | by the translation service provider. You are free to set this value
  51. | to any of the locales which will be supported by the application.
  52. |
  53. */
  54.  
  55. 'locale' => 'en',
  56.  
  57. /*
  58. |--------------------------------------------------------------------------
  59. | Application Fallback Locale
  60. |--------------------------------------------------------------------------
  61. |
  62. | The fallback locale determines the locale to use when the current one
  63. | is not available. You may change the value to correspond to any of
  64. | the language folders that are provided through your application.
  65. |
  66. */
  67.  
  68. 'fallback_locale' => 'en',
  69.  
  70. /*
  71. |--------------------------------------------------------------------------
  72. | Encryption Key
  73. |--------------------------------------------------------------------------
  74. |
  75. | This key is used by the Illuminate encrypter service and should be set
  76. | to a random, 32 character string, otherwise these encrypted strings
  77. | will not be safe. Please do this before deploying an application!
  78. |
  79. */
  80.  
  81. 'key' => 'Gpe6t84qvXUE7QAEeGxVq74v1Uq77xUW',
  82.  
  83. 'cipher' => MCRYPT_RIJNDAEL_128,
  84.  
  85. /*
  86. |--------------------------------------------------------------------------
  87. | Autoloaded Service Providers
  88. |--------------------------------------------------------------------------
  89. |
  90. | The service providers listed here will be automatically loaded on the
  91. | request to your application. Feel free to add your own services to
  92. | this array to grant expanded functionality to your applications.
  93. |
  94. */
  95.  
  96. 'providers' => array(
  97.  
  98. 'Illuminate\Foundation\Providers\ArtisanServiceProvider',
  99. 'Illuminate\Auth\AuthServiceProvider',
  100. 'Illuminate\Cache\CacheServiceProvider',
  101. 'Illuminate\Session\CommandsServiceProvider',
  102. 'Illuminate\Foundation\Providers\ConsoleSupportServiceProvider',
  103. 'Illuminate\Routing\ControllerServiceProvider',
  104. 'Illuminate\Cookie\CookieServiceProvider',
  105. 'Illuminate\Database\DatabaseServiceProvider',
  106. 'Illuminate\Encryption\EncryptionServiceProvider',
  107. 'Illuminate\Filesystem\FilesystemServiceProvider',
  108. 'Illuminate\Hashing\HashServiceProvider',
  109. 'Illuminate\Html\HtmlServiceProvider',
  110. 'Illuminate\Log\LogServiceProvider',
  111. 'Illuminate\Mail\MailServiceProvider',
  112. 'Illuminate\Database\MigrationServiceProvider',
  113. 'Illuminate\Pagination\PaginationServiceProvider',
  114. 'Illuminate\Queue\QueueServiceProvider',
  115. 'Illuminate\Redis\RedisServiceProvider',
  116. 'Illuminate\Remote\RemoteServiceProvider',
  117. 'Illuminate\Auth\Reminders\ReminderServiceProvider',
  118. 'Illuminate\Database\SeedServiceProvider',
  119. 'Illuminate\Session\SessionServiceProvider',
  120. 'Illuminate\Translation\TranslationServiceProvider',
  121. 'Illuminate\Validation\ValidationServiceProvider',
  122. 'Illuminate\View\ViewServiceProvider',
  123. 'Illuminate\Workbench\WorkbenchServiceProvider',
  124.  
  125. 'Flarum\Core\CoreServiceProvider',
  126. 'Flarum\Api\ApiServiceProvider',
  127. 'Flarum\Web\WebServiceProvider’
  128.  
  129. ),
  130.  
  131. /*
  132. |--------------------------------------------------------------------------
  133. | Service Provider Manifest
  134. |--------------------------------------------------------------------------
  135. |
  136. | The service provider manifest is used by Laravel to lazy load service
  137. | providers which are not needed for each request, as well to keep a
  138. | list of all of the services. Here, you may set its storage spot.
  139. |
  140. */
  141.  
  142. 'manifest' => storage_path().'/meta',
  143.  
  144. /*
  145. |--------------------------------------------------------------------------
  146. | Class Aliases
  147. |--------------------------------------------------------------------------
  148. |
  149. | This array of class aliases will be registered when this application
  150. | is started. However, feel free to register as many as you wish as
  151. | the aliases are "lazy" loaded so they don't hinder performance.
  152. |
  153. */
  154.  
  155. 'aliases' => array(
  156.  
  157. 'App' => 'Illuminate\Support\Facades\App',
  158. 'Artisan' => 'Illuminate\Support\Facades\Artisan',
  159. 'Auth' => 'Illuminate\Support\Facades\Auth',
  160. 'Blade' => 'Illuminate\Support\Facades\Blade',
  161. 'Cache' => 'Illuminate\Support\Facades\Cache',
  162. 'ClassLoader' => 'Illuminate\Support\ClassLoader',
  163. 'Config' => 'Illuminate\Support\Facades\Config',
  164. 'Controller' => 'Illuminate\Routing\Controller',
  165. 'Cookie' => 'Illuminate\Support\Facades\Cookie',
  166. 'Crypt' => 'Illuminate\Support\Facades\Crypt',
  167. 'DB' => 'Illuminate\Support\Facades\DB',
  168. 'Eloquent' => 'Illuminate\Database\Eloquent\Model',
  169. 'Event' => 'Illuminate\Support\Facades\Event',
  170. 'File' => 'Illuminate\Support\Facades\File',
  171. 'Form' => 'Illuminate\Support\Facades\Form',
  172. 'Hash' => 'Illuminate\Support\Facades\Hash',
  173. 'HTML' => 'Illuminate\Support\Facades\HTML',
  174. 'Input' => 'Illuminate\Support\Facades\Input',
  175. 'Lang' => 'Illuminate\Support\Facades\Lang',
  176. 'Log' => 'Illuminate\Support\Facades\Log',
  177. 'Mail' => 'Illuminate\Support\Facades\Mail',
  178. 'Paginator' => 'Illuminate\Support\Facades\Paginator',
  179. 'Password' => 'Illuminate\Support\Facades\Password',
  180. 'Queue' => 'Illuminate\Support\Facades\Queue',
  181. 'Redirect' => 'Illuminate\Support\Facades\Redirect',
  182. 'Redis' => 'Illuminate\Support\Facades\Redis',
  183. 'Request' => 'Illuminate\Support\Facades\Request',
  184. 'Response' => 'Illuminate\Support\Facades\Response',
  185. 'Route' => 'Illuminate\Support\Facades\Route',
  186. 'Schema' => 'Illuminate\Support\Facades\Schema',
  187. 'Seeder' => 'Illuminate\Database\Seeder',
  188. 'Session' => 'Illuminate\Support\Facades\Session',
  189. 'SoftDeletingTrait' => 'Illuminate\Database\Eloquent\SoftDeletingTrait',
  190. 'SSH' => 'Illuminate\Support\Facades\SSH',
  191. 'Str' => 'Illuminate\Support\Str',
  192. 'URL' => 'Illuminate\Support\Facades\URL',
  193. 'Validator' => 'Illuminate\Support\Facades\Validator',
  194. 'View' => 'Illuminate\Support\Facades\View',
  195.  
  196. ),
  197.  
  198. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement