database.php 445 Bytes
Newer Older
1 2 3 4 5
<?php

return array(

	'connections' => array(
6

7 8 9 10 11 12
		'mongodb' => array(
			'name'	   => 'mongodb',
			'driver'   => 'mongodb',
			'host'     => 'localhost',
			'database' => 'unittest',
		),
13 14 15 16 17 18 19 20 21 22 23

		'mysql' => array(
			'driver'    => 'mysql',
			'host'      => 'localhost',
			'database'  => 'unittest',
			'username'  => 'travis',
			'password'  => '',
			'charset'   => 'utf8',
			'collation' => 'utf8_unicode_ci',
			'prefix'    => '',
		),
24 25 26
	)

);