application.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Application URL
  6. |--------------------------------------------------------------------------
  7. |
  8. | The URL used to access your application. The trailing slash is optional.
  9. |
  10. | Note: Remove "index.php" from this URL when using mod_rewrite.
  11. |
  12. */
  13. 'url' => 'http://localhost/index.php',
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Application Language
  17. |--------------------------------------------------------------------------
  18. |
  19. | The default language of your application. This language will be used by
  20. | default by the Lang library when doing string localization.
  21. |
  22. | If you are not using the Lang library, this option isn't really important.
  23. |
  24. */
  25. 'language' => 'en',
  26. /*
  27. |--------------------------------------------------------------------------
  28. | Application Character Encoding
  29. |--------------------------------------------------------------------------
  30. |
  31. | This default character encoding used by your application. This is the
  32. | character encoding that will be used by the Str, Text, and Form classes.
  33. |
  34. */
  35. 'encoding' => 'UTF-8',
  36. /*
  37. |--------------------------------------------------------------------------
  38. | Application Timezone
  39. |--------------------------------------------------------------------------
  40. |
  41. | The default timezone of your application. This timezone will be used when
  42. | Laravel needs a date, such as when writing to a log file.
  43. |
  44. */
  45. 'timezone' => 'UTC',
  46. /*
  47. |--------------------------------------------------------------------------
  48. | Application Key
  49. |--------------------------------------------------------------------------
  50. |
  51. | Your application key should be a 32 character string that is totally
  52. | random and secret. This key is used by the encryption class to generate
  53. | secure, encrypted strings.
  54. |
  55. | If you will not be using the encryption class, this doesn't matter.
  56. |
  57. */
  58. 'key' => '',
  59. /*
  60. |--------------------------------------------------------------------------
  61. | Class Aliases
  62. |--------------------------------------------------------------------------
  63. |
  64. | Here, you can specify any class aliases that you would like registered
  65. | when Laravel loads. Aliases are lazy-loaded, so add as many as you want.
  66. |
  67. | We have already setup a few to make your life easier.
  68. |
  69. */
  70. 'aliases' => array(
  71. 'Auth' => 'System\\Auth',
  72. 'Benchmark' => 'System\\Benchmark',
  73. 'Cache' => 'System\\Cache',
  74. 'Config' => 'System\\Config',
  75. 'Cookie' => 'System\\Cookie',
  76. 'Crypt' => 'System\\Crypt',
  77. 'Date' => 'System\\Date',
  78. 'DB' => 'System\\DB',
  79. 'Download' => 'System\\Download',
  80. 'Eloquent' => 'System\\DB\\Eloquent',
  81. 'Form' => 'System\\Form',
  82. 'Hash' => 'System\\Hash',
  83. 'HTML' => 'System\\HTML',
  84. 'Inflector' => 'System\\Inflector',
  85. 'Input' => 'System\\Input',
  86. 'Lang' => 'System\\Lang',
  87. 'Log' => 'System\\Log',
  88. 'URL' => 'System\\URL',
  89. 'Redirect' => 'System\\Redirect',
  90. 'Request' => 'System\\Request',
  91. 'Response' => 'System\\Response',
  92. 'Session' => 'System\\Session',
  93. 'Str' => 'System\\Str',
  94. 'Text' => 'System\\Text',
  95. 'View' => 'System\View',
  96. ),
  97. );