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.

17 lines
307 B

4 years ago
  1. <?php
  2. /**
  3. * Configure of testing
  4. */
  5. $capsule->addConnection(array(
  6. 'driver' => 'mysql',
  7. 'host' => getenv('IP'),
  8. 'port' => 3306,
  9. 'database' => 'c9',
  10. 'username' => getenv('C9_USER'),
  11. 'password' => '',
  12. 'prefix' => '',
  13. 'charset' => "utf8",
  14. 'collation' => "utf8_unicode_ci"
  15. ));