database.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <?php
  2. use Illuminate\Support\Str;
  3. return [
  4. /*
  5. |--------------------------------------------------------------------------
  6. | Default Database Connection Name
  7. |--------------------------------------------------------------------------
  8. |
  9. | Here you may specify which of the database connections below you wish
  10. | to use as your default connection for all database work. Of course
  11. | you may use many connections at once using the Database library.
  12. |
  13. */
  14. 'default' => env('DB_CONNECTION', 'mysql'),
  15. /*
  16. |--------------------------------------------------------------------------
  17. | Database Connections
  18. |--------------------------------------------------------------------------
  19. |
  20. | Here are each of the database connections setup for your application.
  21. | Of course, examples of configuring each database platform that is
  22. | supported by Laravel is shown below to make development simple.
  23. |
  24. |
  25. | All database work in Laravel is done through the PHP PDO facilities
  26. | so make sure you have the driver for your particular database of
  27. | choice installed on your machine before you begin development.
  28. |
  29. */
  30. 'connections' => [
  31. 'sqlite' => [
  32. 'driver' => 'sqlite',
  33. 'url' => env('DATABASE_URL'),
  34. 'database' => env(
  35. 'DB_DATABASE',
  36. database_path('database.sqlite')
  37. ),
  38. 'prefix' => '',
  39. 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
  40. ],
  41. 'mysql' => [
  42. 'driver' => 'mysql',
  43. 'url' => env('DATABASE_URL'),
  44. 'host' => env('DB_HOST', '127.0.0.1'),
  45. 'port' => env('DB_PORT', '3306'),
  46. 'database' => env('DB_DATABASE', 'forge'),
  47. 'username' => env('DB_USERNAME', 'forge'),
  48. 'password' => env('DB_PASSWORD', ''),
  49. 'unix_socket' => env('DB_SOCKET', ''),
  50. 'charset' => 'utf8mb4',
  51. 'collation' => 'utf8mb4_unicode_ci',
  52. 'prefix' => '',
  53. 'prefix_indexes' => true,
  54. 'strict' => env('DB_STRICT', true),
  55. 'engine' => null,
  56. 'options' => extension_loaded('pdo_mysql') ? array_filter(
  57. [
  58. PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
  59. ]
  60. ) : [],
  61. ],
  62. 'pgsql' => [
  63. 'driver' => 'pgsql',
  64. 'url' => env('DATABASE_URL'),
  65. 'host' => env('DB_HOST', '127.0.0.1'),
  66. 'port' => env('DB_PORT', '5432'),
  67. 'database' => env('DB_DATABASE', 'forge'),
  68. 'username' => env('DB_USERNAME', 'forge'),
  69. 'password' => env('DB_PASSWORD', ''),
  70. 'charset' => 'utf8',
  71. 'prefix' => '',
  72. 'prefix_indexes' => true,
  73. 'schema' => 'public',
  74. 'sslmode' => 'prefer',
  75. ],
  76. 'sqlsrv' => [
  77. 'driver' => 'sqlsrv',
  78. 'url' => env('DATABASE_URL'),
  79. 'host' => env('DB_HOST', 'localhost'),
  80. 'port' => env('DB_PORT', '1433'),
  81. 'database' => env('DB_DATABASE', 'forge'),
  82. 'username' => env('DB_USERNAME', 'forge'),
  83. 'password' => env('DB_PASSWORD', ''),
  84. 'charset' => 'utf8',
  85. 'prefix' => '',
  86. 'prefix_indexes' => true,
  87. ],
  88. ],
  89. /*
  90. |--------------------------------------------------------------------------
  91. | Migration Repository Table
  92. |--------------------------------------------------------------------------
  93. |
  94. | This table keeps track of all the migrations that have already run for
  95. | your application. Using this information, we can determine which of
  96. | the migrations on disk haven't actually been run in the database.
  97. |
  98. */
  99. 'migrations' => 'migrations',
  100. /*
  101. |--------------------------------------------------------------------------
  102. | Redis Databases
  103. |--------------------------------------------------------------------------
  104. |
  105. | Redis is an open source, fast, and advanced key-value store that also
  106. | provides a richer body of commands than a typical key-value system
  107. | such as APC or Memcached. Laravel makes it easy to dig right in.
  108. |
  109. */
  110. 'redis' => [
  111. 'client' => env('REDIS_CLIENT', 'phpredis'),
  112. 'options' => [
  113. 'cluster' => env('REDIS_CLUSTER', 'redis'),
  114. 'prefix' => env(
  115. 'REDIS_PREFIX',
  116. Str::slug(
  117. env('APP_NAME', 'laravel'),
  118. '_'
  119. ) . '_database_'
  120. ),
  121. ],
  122. 'default' => [
  123. 'url' => env('REDIS_URL'),
  124. 'host' => env('REDIS_HOST', '127.0.0.1'),
  125. 'password' => env('REDIS_PASSWORD', null),
  126. 'port' => env('REDIS_PORT', '6379'),
  127. 'database' => env('REDIS_DB', '0'),
  128. ],
  129. 'cache' => [
  130. 'url' => env('REDIS_URL'),
  131. 'host' => env('REDIS_HOST', '127.0.0.1'),
  132. 'password' => env('REDIS_PASSWORD', null),
  133. 'port' => env('REDIS_PORT', '6379'),
  134. 'database' => env('REDIS_CACHE_DB', '1'),
  135. ],
  136. 'session' => [
  137. 'url' => env('REDIS_URL'),
  138. 'host' => env('REDIS_HOST', '127.0.0.1'),
  139. 'password' => env('REDIS_PASSWORD', null),
  140. 'port' => env('REDIS_PORT', 6379),
  141. 'database' => env('REDIS_SESSION_DB', 2),
  142. ],
  143. ],
  144. ];