database.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. 'charset' => 'utf8mb4',
  43. 'collation' => 'utf8mb4_unicode_ci',
  44. 'prefix' => '',
  45. 'strict' => true,
  46. 'engine' => null,
  47. ],
  48. 'pgsql' => [
  49. 'driver' => 'pgsql',
  50. 'host' => env('DB_HOST', '127.0.0.1'),
  51. 'port' => env('DB_PORT', '5432'),
  52. 'database' => env('DB_DATABASE', 'forge'),
  53. 'username' => env('DB_USERNAME', 'forge'),
  54. 'password' => env('DB_PASSWORD', ''),
  55. 'charset' => 'utf8',
  56. 'prefix' => '',
  57. 'schema' => 'public',
  58. 'sslmode' => 'prefer',
  59. ],
  60. ],
  61. /*
  62. |--------------------------------------------------------------------------
  63. | Migration Repository Table
  64. |--------------------------------------------------------------------------
  65. |
  66. | This table keeps track of all the migrations that have already run for
  67. | your application. Using this information, we can determine which of
  68. | the migrations on disk haven't actually been run in the database.
  69. |
  70. */
  71. 'migrations' => 'migrations',
  72. /*
  73. |--------------------------------------------------------------------------
  74. | Redis Databases
  75. |--------------------------------------------------------------------------
  76. |
  77. | Redis is an open source, fast, and advanced key-value store that also
  78. | provides a richer set of commands than a typical key-value systems
  79. | such as APC or Memcached. Laravel makes it easy to dig right in.
  80. |
  81. */
  82. 'redis' => [
  83. 'client' => 'predis',
  84. 'default' => [
  85. 'host' => env('REDIS_HOST', '127.0.0.1'),
  86. 'password' => env('REDIS_PASSWORD', null),
  87. 'port' => env('REDIS_PORT', 6379),
  88. 'database' => 0,
  89. ],
  90. ],
  91. ];