miniMVC/app/config/db.php

25 lines
493 B
PHP
Raw Normal View History

2011-12-27 13:30:44 -05:00
<?php
2012-01-11 14:49:26 -05:00
/**
* 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
*/
// --------------------------------------------------------------------------
2011-12-27 13:30:44 -05:00
$db_conf = array(
'default' => array(
'type' => '',
'host' => '',
'user' => '',
'pass' => '',
'db' => '',
'prefix' => '',
'persist' => '',
)
2011-12-27 13:30:44 -05:00
);