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.
PlexShare/fuel/app/config/test/db.php

17 lines
389 B

<?php
/**
* The test database settings. These get merged with the global settings.
*
* This environment is primarily used by unit tests, to run on a controlled environment.
*/
return array(
'default' => array(
'connection' => array(
'dsn' => 'mysql:host=localhost;dbname=fuel_test',
'username' => 'fuel_app',
'password' => 'super_secret_password',
),
),
);