Go to file
2011-12-30 17:09:29 -05:00
app Got router working 2011-12-29 16:57:28 -05:00
assets Fixed object inheritence, changed config to be based more on constants 2011-12-29 10:31:04 -05:00
modules/welcome Updated readme and fixed some whitespace issues 2011-12-30 17:09:29 -05:00
sys Updated readme and fixed some whitespace issues 2011-12-30 17:09:29 -05:00
index.php Miscellaneous Fixes 2011-12-30 16:41:25 -05:00
README.md Updated readme and fixed some whitespace issues 2011-12-30 17:09:29 -05:00

miniMVC

miniMVC is a minimalistic Modular MVC framework, with built-in minifier, and pure-PHP templating system.

It has the following file structure

*index.php* - framework frontend

*app* - configuration and app-wide files
	*config* 	- configuration files
	*errors* 	- error page templates
	*views* 	- global page templates

*assets* - frontend files
	*js*		- 	javascript files
	*css* 	- 	css files
	*config*  -	minifier configuration files

*modules* - MVC triads
	*controllers* - controller classes
	*models*		- model classes
	*views*		- module-specific views 

*sys* - core framework classes