Welcome on PHP Class Generator Documentation
The full documentation is available here: French, English?
The last stable version is available here: Download
But what is PCG ?
PCG is a PHP source code generator. It look your database schema and create some object from one. With PCG you can store 60% time of development. This is not a framework, you can use Zend Framework or any framework you like.
Its little example of generated code using:
<?php $bug = new bug(); //this is a new bug $bug->setSubject("test")->setDescription('some words...')->save(); $bug = new bug(123); // create bug object from database $bug->setSubject("my subject")->save(); // update some information and save it ?>