Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 314 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 314 Bytes

yii2-test-examples

test examples

add db.php to config folder with following code (set db parameters correctly)

<?php
return [
	'class' => 'yii\db\Connection',
	'dsn' => 'mysql:host=localhost;dbname=test',
	'username' => 'common',
	'password' => 'common',
	'charset' => 'utf8',
];