application.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Application URL
  6. |--------------------------------------------------------------------------
  7. |
  8. | The URL used to access your application. No trailing slash.
  9. |
  10. */
  11. 'url' => 'http://localhost',
  12. /*
  13. |--------------------------------------------------------------------------
  14. | Application Index
  15. |--------------------------------------------------------------------------
  16. |
  17. | If you are including the "index.php" in your URLs, you can ignore this.
  18. |
  19. | However, if you are using mod_rewrite or something similar to get
  20. | cleaner URLs, set this option to an empty string.
  21. |
  22. */
  23. 'index' => 'index.php',
  24. /*
  25. |--------------------------------------------------------------------------
  26. | Application Key
  27. |--------------------------------------------------------------------------
  28. |
  29. | The application key should be a random, 32 character string.
  30. |
  31. | This key is used by the encryption and cookie classes to generate secure
  32. | encrypted strings and hashes. It is extremely important that this key
  33. | remain secret and should not be shared with anyone.
  34. |
  35. */
  36. 'key' => '',
  37. /*
  38. |--------------------------------------------------------------------------
  39. | Application Character Encoding
  40. |--------------------------------------------------------------------------
  41. |
  42. | The default character encoding used by your application. This is the
  43. | character encoding that will be used by the Str, Text, and Form classes.
  44. |
  45. */
  46. 'encoding' => 'UTF-8',
  47. /*
  48. |--------------------------------------------------------------------------
  49. | Application Language
  50. |--------------------------------------------------------------------------
  51. |
  52. | The default language of your application. This language will be used by
  53. | Lang library as the default language when doing string localization.
  54. |
  55. */
  56. 'language' => 'en',
  57. /*
  58. |--------------------------------------------------------------------------
  59. | Auto-Loaded Packages
  60. |--------------------------------------------------------------------------
  61. |
  62. | The packages that should be auto-loaded each time Laravel handles a
  63. | request. These should generally be packages that you use on almost every
  64. | request to your application.
  65. |
  66. | Each package specified here will be bootstrapped and can be conveniently
  67. | used by your application's routes, models, and libraries.
  68. |
  69. | Note: The package names in this array should correspond to a package
  70. | directory in application/packages.
  71. |
  72. */
  73. 'packages' => array(),
  74. /*
  75. |--------------------------------------------------------------------------
  76. | SSL Link Generation
  77. |--------------------------------------------------------------------------
  78. |
  79. | Many sites use SSL to protect their users data. However, you may not
  80. | always be able to use SSL on your development machine, meaning all HTTPS
  81. | will be broken during development.
  82. |
  83. | For this reason, you may wish to disable the generation of HTTPS links
  84. | throughout your application. This option does just that. All attempts to
  85. | generate HTTPS links will generate regular HTTP links instead.
  86. |
  87. */
  88. 'ssl' => true,
  89. /*
  90. |--------------------------------------------------------------------------
  91. | Application Timezone
  92. |--------------------------------------------------------------------------
  93. |
  94. | The default timezone of your application. This timezone will be used when
  95. | Laravel needs a date, such as when writing to a log file.
  96. |
  97. */
  98. 'timezone' => 'UTC',
  99. /*
  100. |--------------------------------------------------------------------------
  101. | Class Aliases
  102. |--------------------------------------------------------------------------
  103. |
  104. | Here, you can specify any class aliases that you would like registered
  105. | when Laravel loads. Aliases are lazy-loaded, so add as many as you want.
  106. |
  107. | Aliases make it more convenient to use namespaced classes. Instead of
  108. | referring to the class using its full namespace, you may simply use
  109. | the alias defined here.
  110. |
  111. | We have already aliased common Laravel classes to make your life easier.
  112. |
  113. */
  114. 'aliases' => array(
  115. 'Asset' => 'Laravel\\Asset',
  116. 'Auth' => 'Laravel\\Security\\Auth',
  117. 'Benchmark' => 'Laravel\\Benchmark',
  118. 'Cache' => 'Laravel\\Cache\\Manager',
  119. 'Config' => 'Laravel\\Config',
  120. 'Controller' => 'Laravel\\Routing\\Controller',
  121. 'Cookie' => 'Laravel\\Cookie',
  122. 'Crypter' => 'Laravel\\Security\\Crypter',
  123. 'DB' => 'Laravel\\Database\\Manager',
  124. 'Eloquent' => 'Laravel\\Database\\Eloquent\\Model',
  125. 'File' => 'Laravel\\File',
  126. 'Form' => 'Laravel\\Form',
  127. 'Hasher' => 'Laravel\\Security\\Hasher',
  128. 'HTML' => 'Laravel\\HTML',
  129. 'Inflector' => 'Laravel\\Inflector',
  130. 'Input' => 'Laravel\\Input',
  131. 'IoC' => 'Laravel\\IoC',
  132. 'Lang' => 'Laravel\\Lang',
  133. 'URL' => 'Laravel\\URL',
  134. 'Redirect' => 'Laravel\\Redirect',
  135. 'Redis' => 'Laravel\\Redis',
  136. 'Request' => 'Laravel\\Request',
  137. 'Response' => 'Laravel\\Response',
  138. 'Session' => 'Laravel\\Session\\Manager',
  139. 'Str' => 'Laravel\\Str',
  140. 'Validator' => 'Laravel\\Validation\\Validator',
  141. 'View' => 'Laravel\\View',
  142. ),
  143. );