[ 'sqlite' => [ 'dsn' => 'sqlite::memory:', 'fixture' => __DIR__ . '/sqlite.sql', ], 'pgsql' => [ 'dsn' => 'pgsql:host=localhost;port=5432;dbname=yiitest', 'username' => 'postgres', 'password' => 'postgres', 'fixture' => __DIR__ . '/pgsql.sql', ], ], ]; if (is_file(__DIR__ . '/config.local.php')) { include(__DIR__ . '/config.local.php'); } return $config;