application.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Application URL
  6. |--------------------------------------------------------------------------
  7. |
  8. | The URL used to access your application without a trailing slash. The URL
  9. | does nto have to be set. If it isn't we'll try our best to guess the URL
  10. | of your application.
  11. |
  12. */
  13. 'url' => '',
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Application Index
  17. |--------------------------------------------------------------------------
  18. |
  19. | If you are including the "index.php" in your URLs, you can ignore this.
  20. |
  21. | However, if you are using mod_rewrite to get cleaner URLs, just set
  22. | this option to an empty string and we'll take care of the rest.
  23. |
  24. */
  25. 'index' => 'index.php',
  26. /*
  27. |--------------------------------------------------------------------------
  28. | Application Key
  29. |--------------------------------------------------------------------------
  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. Make it about 32
  34. | characters of random gibberish.
  35. |
  36. */
  37. 'key' => '',
  38. /*
  39. |--------------------------------------------------------------------------
  40. | Application Character Encoding
  41. |--------------------------------------------------------------------------
  42. |
  43. | The default character encoding used by your application. This encoding
  44. | will be used by the Str, Text, Form, and any other classes that need
  45. | to know what type of encoding to use for your awesome application.
  46. |
  47. */
  48. 'encoding' => 'UTF-8',
  49. /*
  50. |--------------------------------------------------------------------------
  51. | Application Language
  52. |--------------------------------------------------------------------------
  53. |
  54. | The default language of your application. This language will be used by
  55. | Lang library as the default language when doing string localization.
  56. |
  57. */
  58. 'language' => 'en',
  59. /*
  60. |--------------------------------------------------------------------------
  61. | SSL Link Generation
  62. |--------------------------------------------------------------------------
  63. |
  64. | Many sites use SSL to protect their users data. However, you may not
  65. | always be able to use SSL on your development machine, meaning all HTTPS
  66. | will be broken during development.
  67. |
  68. | For this reason, you may wish to disable the generation of HTTPS links
  69. | throughout your application. This option does just that. All attempts to
  70. | generate HTTPS links will generate regular HTTP links instead.
  71. |
  72. */
  73. 'ssl' => true,
  74. /*
  75. |--------------------------------------------------------------------------
  76. | Application Timezone
  77. |--------------------------------------------------------------------------
  78. |
  79. | The default timezone of your application. This timezone will be used when
  80. | Laravel needs a date, such as when writing to a log file or travelling
  81. | to a distant star at warp speed.
  82. |
  83. */
  84. 'timezone' => 'UTC',
  85. /*
  86. |--------------------------------------------------------------------------
  87. | Class Aliases
  88. |--------------------------------------------------------------------------
  89. |
  90. | Here, you can specify any class aliases that you would like registered
  91. | when Laravel loads. Aliases are lazy-loaded, so add as many as you want.
  92. |
  93. | Aliases make it more convenient to use namespaced classes. Instead of
  94. | referring to the class using its full namespace, you may simply use
  95. | the alias defined here.
  96. |
  97. | We have already aliased common Laravel classes to make your life easier.
  98. |
  99. */
  100. 'aliases' => array(
  101. 'Auth' => 'Laravel\\Auth',
  102. 'Asset' => 'Laravel\\Asset',
  103. 'Autoloader' => 'Laravel\\Autoloader',
  104. 'Blade' => 'Laravel\\Blade',
  105. 'Bundle' => 'Laravel\\Bundle',
  106. 'Cache' => 'Laravel\\Cache',
  107. 'Config' => 'Laravel\\Config',
  108. 'Controller' => 'Laravel\\Routing\\Controller',
  109. 'Cookie' => 'Laravel\\Cookie',
  110. 'Crypter' => 'Laravel\\Crypter',
  111. 'DB' => 'Laravel\\Database',
  112. 'Event' => 'Laravel\\Event',
  113. 'File' => 'Laravel\\File',
  114. 'Filter' => 'Laravel\\Routing\\Filter',
  115. 'Form' => 'Laravel\\Form',
  116. 'Hash' => 'Laravel\\Hash',
  117. 'HTML' => 'Laravel\\HTML',
  118. 'Input' => 'Laravel\\Input',
  119. 'IoC' => 'Laravel\\IoC',
  120. 'Lang' => 'Laravel\\Lang',
  121. 'Log' => 'Laravel\\Log',
  122. 'Memcached' => 'Laravel\\Memcached',
  123. 'Paginator' => 'Laravel\\Paginator',
  124. 'URL' => 'Laravel\\URL',
  125. 'Redirect' => 'Laravel\\Redirect',
  126. 'Redis' => 'Laravel\\Redis',
  127. 'Request' => 'Laravel\\Request',
  128. 'Response' => 'Laravel\\Response',
  129. 'Route' => 'Laravel\\Routing\\Route',
  130. 'Router' => 'Laravel\\Routing\\Router',
  131. 'Schema' => 'Laravel\\Database\\Schema',
  132. 'Section' => 'Laravel\\Section',
  133. 'Session' => 'Laravel\\Session',
  134. 'Str' => 'Laravel\\Str',
  135. 'Task' => 'Laravel\\CLI\\Tasks\\Task',
  136. 'URI' => 'Laravel\\URI',
  137. 'Validator' => 'Laravel\\Validator',
  138. 'View' => 'Laravel\\View',
  139. ),
  140. );