database.php 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Default Database Connection
  6. |--------------------------------------------------------------------------
  7. |
  8. | The name of your default database connection. This connection will used
  9. | as the default for all database operations unless a different name is
  10. | given when performing said operation. This connection name should be
  11. | listed in the array of connections below.
  12. |
  13. */
  14. 'default' => 'mysql',
  15. /*
  16. |--------------------------------------------------------------------------
  17. | Database Connections
  18. |--------------------------------------------------------------------------
  19. |
  20. | All of the database connections used by your application. Many of your
  21. | applications will no doubt only use one connection; however, you have
  22. | the freedom to specify as many connections as you can handle.
  23. |
  24. | All database work in Laravel is done through the PHP's PDO facilities,
  25. | so make sure you have the PDO drivers for your particlar database of
  26. | choice installed on your machine.
  27. |
  28. | Drivers: 'mysql', 'pgsql', 'sqlsrv', 'sqlite'.
  29. |
  30. */
  31. 'connections' => array(
  32. 'sqlite' => array(
  33. 'driver' => 'sqlite',
  34. 'database' => 'application',
  35. 'prefix' => '',
  36. ),
  37. 'mysql' => array(
  38. 'driver' => 'mysql',
  39. 'host' => 'localhost',
  40. 'database' => 'database',
  41. 'username' => 'root',
  42. 'password' => '',
  43. 'charset' => 'utf8',
  44. 'prefix' => '',
  45. ),
  46. 'pgsql' => array(
  47. 'driver' => 'pgsql',
  48. 'host' => 'localhost',
  49. 'database' => 'database',
  50. 'username' => 'root',
  51. 'password' => '',
  52. 'charset' => 'utf8',
  53. 'prefix' => '',
  54. ),
  55. 'sqlsrv' => array(
  56. 'driver' => 'sqlsrv',
  57. 'host' => 'localhost',
  58. 'database' => 'database',
  59. 'username' => 'root',
  60. 'password' => '',
  61. 'prefix' => '',
  62. ),
  63. ),
  64. /*
  65. |--------------------------------------------------------------------------
  66. | Redis Databases
  67. |--------------------------------------------------------------------------
  68. |
  69. | Redis is an open source, fast, and advanced key-value store. However, it
  70. | provides a richer set of commands than a typical key-value store such as
  71. | APC or memcached. All the cool kids are using it.
  72. |
  73. | To get the scoop on Redis, check out: http://redis.io
  74. |
  75. */
  76. 'redis' => array(
  77. 'default' => array('host' => '127.0.0.1', 'port' => 6379),
  78. ),
  79. );