Ingen beskrivning

database.php 2.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. return array(
  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' => 'mysql',
  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' => array(
  41. 'mysql' => array(
  42. 'driver' => 'mysql',
  43. 'host' => $_ENV['MYSQL_HOST'] ?: 'localhost',
  44. 'database' => $_ENV['MYSQL_DATABASE'] ?: 'laravel',
  45. 'username' => $_ENV['MYSQL_USERNAME'] ?: 'root',
  46. 'password' => $_ENV['MYSQL_PASSWORD'] ?: '',
  47. 'charset' => 'utf8',
  48. 'collation' => 'utf8_unicode_ci',
  49. 'prefix' => '',
  50. ),
  51. ),
  52. /*
  53. |--------------------------------------------------------------------------
  54. | Migration Repository Table
  55. |--------------------------------------------------------------------------
  56. |
  57. | This table keeps track of all the migrations that have already run for
  58. | your application. Using this information, we can determine which of
  59. | the migrations on disk haven't actually been run in the database.
  60. |
  61. */
  62. 'migrations' => 'migrations',
  63. /*
  64. |--------------------------------------------------------------------------
  65. | Redis Databases
  66. |--------------------------------------------------------------------------
  67. |
  68. | Redis is an open source, fast, and advanced key-value store that also
  69. | provides a richer set of commands than a typical key-value systems
  70. | such as APC or Memcached. Laravel makes it easy to dig right in.
  71. |
  72. */
  73. 'redis' => array(
  74. 'cluster' => false,
  75. 'default' => array(
  76. 'host' => '127.0.0.1',
  77. 'port' => 6379,
  78. 'database' => 0,
  79. ),
  80. ),
  81. );