http://github.com/Cabbit/Cabbit-Framework
I went back to the drawing board for a bit and recreated most of my framework from the ground up.
It has the wonderful php active record build in for managing databases and many new classes well beyond the old one.
For now i just getting round working out how git works so the documentation is not uploaded yet but it can tell you how to get started with a test.
All steps assume access to a Unix, Linux or Mac Os terminal as i do not know how to replicate php script/cabbit for Windows.
Step 1
Download Cabbit from http://github.com/Cabbit/Cabbit-Framework
Step 2
Place the directory in your sites folder or directory where you test php files and rename it to something logical like "blog" if your going to make a blog
Step 3
Modify the config/config.xml with your name and the environment "development"
Step 4
Open the config/database.xml and input your database details, MySQL is currently supported with DBMigrate. You will need to create the database table too.
Step 5
Open up your terminal and navigate to the root directory of your application
Step 6
Were assuming a blog so type in "php script/cabbit generate scaffold blog title:string body:text" for a list of commands "php script/cabbit"
Step 7
Type in "php script/cabbit migrate:db"
Step 8
Open up your browser and go to http://localhost:8888/blogs (assuming MAMP). You will now be able to create, edit, update and destroy blogs and play around with more of the classes and generate more models.