You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

database.php 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | PDO Fetch Style
  6. |--------------------------------------------------------------------------
  7. |
  8. | By default, database results will be returned as instances of the PHP
  9. | stdClass object; however, you may desire to retrieve records in an
  10. | array format for simplicity. Here you can tweak the fetch style.
  11. |
  12. */
  13. 'fetch' => PDO::FETCH_CLASS,
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Default Database Connection Name
  17. |--------------------------------------------------------------------------
  18. |
  19. | Here you may specify which of the database connections below you wish
  20. | to use as your default connection for all database work. Of course
  21. | you may use many connections at once using the Database library.
  22. |
  23. */
  24. 'default' => 'pgsql',
  25. /*
  26. |--------------------------------------------------------------------------
  27. | Database Connections
  28. |--------------------------------------------------------------------------
  29. |
  30. | Here are each of the database connections setup for your application.
  31. | Of course, examples of configuring each database platform that is
  32. | supported by Laravel is shown below to make development simple.
  33. |
  34. |
  35. | All database work in Laravel is done through the PHP PDO facilities
  36. | so make sure you have the driver for your particular database of
  37. | choice installed on your machine before you begin development.
  38. |
  39. */
  40. 'connections' => [
  41. 'sqlite' => [
  42. 'driver' => 'sqlite',
  43. 'database' => storage_path().'/database.sqlite',
  44. 'prefix' => '',
  45. ],
  46. 'mysql' => [
  47. 'driver' => 'mysql',
  48. 'host' => env('DB_HOST', 'localhost'),
  49. 'database' => env('DB_DATABASE', 'forge'),
  50. 'username' => env('DB_USERNAME', 'forge'),
  51. 'password' => env('DB_PASSWORD', ''),
  52. 'charset' => 'utf8',
  53. 'collation' => 'utf8_unicode_ci',
  54. 'prefix' => '',
  55. 'strict' => false,
  56. ],
  57. 'pgsql' => [
  58. 'driver' => 'pgsql',
  59. 'host' => env('DB_HOST', 'localhost'),
  60. 'database' => env('DB_DATABASE', 'test'),
  61. 'username' => env('DB_USERNAME', 'postgres'),
  62. 'password' => env('DB_PASSWORD', 'root'),
  63. 'charset' => 'utf8',
  64. 'prefix' => '',
  65. 'schema' => 'public',
  66. ],
  67. 'sqlsrv' => [
  68. 'driver' => 'sqlsrv',
  69. 'host' => env('DB_HOST', 'localhost'),
  70. 'database' => env('DB_DATABASE', 'forge'),
  71. 'username' => env('DB_USERNAME', 'forge'),
  72. 'password' => env('DB_PASSWORD', ''),
  73. 'prefix' => '',
  74. ],
  75. ],
  76. /*
  77. |--------------------------------------------------------------------------
  78. | Migration Repository Table
  79. |--------------------------------------------------------------------------
  80. |
  81. | This table keeps track of all the migrations that have already run for
  82. | your application. Using this information, we can determine which of
  83. | the migrations on disk haven't actually been run in the database.
  84. |
  85. */
  86. 'migrations' => 'migrations',
  87. /*
  88. |--------------------------------------------------------------------------
  89. | Redis Databases
  90. |--------------------------------------------------------------------------
  91. |
  92. | Redis is an open source, fast, and advanced key-value store that also
  93. | provides a richer set of commands than a typical key-value systems
  94. | such as APC or Memcached. Laravel makes it easy to dig right in.
  95. |
  96. */
  97. 'redis' => [
  98. 'cluster' => false,
  99. 'default' => [
  100. 'host' => '127.0.0.1',
  101. 'port' => 6379,
  102. 'database' => 0,
  103. ],
  104. ],
  105. ];