Monday, May 24, 2010

First step: A stripped-down PHP framework

After seeing so many PHP Frameworks that offers everything and a lot more of what I really want I decided to build a stripped-down PHP framework between pure standard PHP files and a proper MVC do-all PHP framework. I really like to keep a few things almost the same as working with straight PHP files.
  1. No routing mechanism
  2. No complex autoloading schemes
  3. No proper MVC (Every .php file is a controller - No model files - View Files are organized however you like)
  4. Class names works as basic namespaces. I don't like PHP 5.3 namespaces.
  5. No hidden include()/require() nightmare.
Enough talk. You can download this first step here

0 comments:

Post a Comment