Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <?php
  2.  
  3. return [
  4.  
  5. 'default' => 'accounts',
  6.  
  7. 'connections' => [
  8.  
  9. 'accounts' => [
  10. 'driver' => 'mysql',
  11. 'host' => 'localhost',
  12. 'database' => 'accounts',
  13. 'username' => 'root',
  14. 'password' => 'secret',
  15. 'charset' => 'utf8',
  16. 'collation' => 'utf8_unicode_ci',
  17. 'prefix' => '',
  18. 'strict' => false,
  19. ],
  20.  
  21. 'content' => [
  22. 'driver' => 'mysql',
  23. 'host' => 'localhost',
  24. 'database' => 'content',
  25. 'username' => 'root',
  26. 'password' => 'secret',
  27. 'charset' => 'utf8',
  28. 'collation' => 'utf8_unicode_ci',
  29. 'prefix' => '',
  30. 'strict' => false,
  31. ],
  32.  
  33. ],
  34.  
  35.  
  36. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement