miniMVC/app/config/db.php

37 lines
688 B
PHP
Raw Normal View History

2012-01-13 11:58:06 -05:00
<?php
/**
* MiniMVC
*
* Convention-based micro-framework for PHP
*
* @package miniMVC
2012-01-13 11:58:06 -05:00
* @author Timothy J. Warren
* @copyright Copyright (c) 2011 - 2012
2012-05-23 12:01:13 -04:00
* @link https://github.com/aviat4ion/miniMVC
2012-01-13 11:58:06 -05:00
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
/**
* Database config file
*
* @package miniMVC
* @subpackage App
*/
// --------------------------------------------------------------------------
$db_conf = array(
'default' => array(
2012-01-13 11:58:06 -05:00
'type' => '',
'host' => '',
'user' => '',
'pass' => '',
'port' => '',
'database' => '',
'file' => '',
)
);
2012-05-18 13:52:12 -04:00
// End of db.php