application.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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 Language
  27. |--------------------------------------------------------------------------
  28. |
  29. | The default language of your application. This language will be used by
  30. | default by the Lang library when doing string localization.
  31. |
  32. | If you are not using the Lang library, this option isn't really important.
  33. |
  34. */
  35. 'language' => 'en',
  36. /*
  37. |--------------------------------------------------------------------------
  38. | Application Character Encoding
  39. |--------------------------------------------------------------------------
  40. |
  41. | This default character encoding used by your application. This is the
  42. | character encoding that will be used by the Str, Text, and Form classes.
  43. |
  44. */
  45. 'encoding' => 'UTF-8',
  46. /*
  47. |--------------------------------------------------------------------------
  48. | Application Timezone
  49. |--------------------------------------------------------------------------
  50. |
  51. | The default timezone of your application. This timezone will be used when
  52. | Laravel needs a date, such as when writing to a log file.
  53. |
  54. */
  55. 'timezone' => 'UTC',
  56. /*
  57. |--------------------------------------------------------------------------
  58. | Application Key
  59. |--------------------------------------------------------------------------
  60. |
  61. | Your application key should be a 32 character string that is totally
  62. | random and secret. This key is used by the encryption class to generate
  63. | secure, encrypted strings.
  64. |
  65. | If you will not be using the encryption class, this doesn't matter.
  66. |
  67. */
  68. 'key' => '',
  69. /*
  70. |--------------------------------------------------------------------------
  71. | Class Aliases
  72. |--------------------------------------------------------------------------
  73. |
  74. | Here, you can specify any class aliases that you would like registered
  75. | when Laravel loads. Aliases are lazy-loaded, so add as many as you want.
  76. |
  77. | We have already setup a few to make your life easier.
  78. |
  79. */
  80. 'aliases' => array(
  81. 'Auth' => 'System\\Auth',
  82. 'Benchmark' => 'System\\Benchmark',
  83. 'Cache' => 'System\\Cache',
  84. 'Config' => 'System\\Config',
  85. 'Cookie' => 'System\\Cookie',
  86. 'Crypt' => 'System\\Crypt',
  87. 'Date' => 'System\\Date',
  88. 'DB' => 'System\\DB',
  89. 'Download' => 'System\\Download',
  90. 'Eloquent' => 'System\\DB\\Eloquent',
  91. 'Form' => 'System\\Form',
  92. 'Hash' => 'System\\Hash',
  93. 'HTML' => 'System\\HTML',
  94. 'Inflector' => 'System\\Inflector',
  95. 'Input' => 'System\\Input',
  96. 'Lang' => 'System\\Lang',
  97. 'Log' => 'System\\Log',
  98. 'URL' => 'System\\URL',
  99. 'Redirect' => 'System\\Redirect',
  100. 'Request' => 'System\\Request',
  101. 'Response' => 'System\\Response',
  102. 'Session' => 'System\\Session',
  103. 'Str' => 'System\\Str',
  104. 'Text' => 'System\\Text',
  105. 'View' => 'System\View',
  106. ),
  107. );