miniMVC/src/app/config/db.php

25 lines
493 B
PHP
Raw Normal View History

2012-01-13 11:58:06 -05:00
<?php
/**
* MiniMVC
*
* Convention-based micro-framework for PHP
*
* @author Timothy J. Warren
* @copyright Copyright (c) 2011 - 2012
* @link https://github.com/timw4mail/miniMVC
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
$db_conf = array(
'default' => array(
'type' => '',
'host' => '',
'user' => '',
'pass' => '',
'db' => '',
'prefix' => '',
'persist' => '',
)
);