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.

120 lines
3.9 KiB

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