miniMVC/src/app/config/db.php

25 lines
483 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
*/
// --------------------------------------------------------------------------
2012-04-05 12:48:10 -04:00
$db_conf = [
'default' => [
2012-01-13 11:58:06 -05:00
'type' => '',
'host' => '',
'user' => '',
'pass' => '',
'db' => '',
'prefix' => '',
'persist' => '',
2012-04-05 12:48:10 -04:00
]
];