Edited readme

This commit is contained in:
Timothy Warren 2011-12-27 13:30:44 -05:00
parent 8fff8a2df2
commit 3354364d5e
3 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,3 @@
miniMVC is a php framework based on javascript-like objects.
It is currently pre-alpha. Features are still being built-out.

5
app/config/config.php Normal file
View File

@ -0,0 +1,5 @@
<?php
$config = array(
);

13
app/config/db.php Normal file
View File

@ -0,0 +1,13 @@
<?php
$db_conf = array(
'default' => array(
'type' => '',
'host' => '',
'user' => '',
'pass' => '',
'db' => '',
'prefix' => '',
'persist' => '',
),
);