phpunit.php 282 B

1234567891011
  1. <?php
  2. defined("MYSQL_CONFIG") ?: define('MYSQL_CONFIG', [
  3. 'host' => '127.0.0.1',
  4. 'port' => 3306,
  5. 'user' => 'demo',
  6. 'password' => '123456',
  7. 'database' => 'demo',
  8. 'timeout' => 5,
  9. 'charset' => 'utf8mb4',
  10. ]);