I wants to generate Class Model of all my classes in code base. I wonder if anyone is aware of anything already available to do that.
I wants to do similar to this :
http://maven.apache.org/plugins/maven-javadoc-plugin/examples/alternate-doclet.html
www.umlgraph.org/doc/indexw.html
I am not sure if is there anything available for PHP to do along with Phing.
Thank You.
Currently there is no task for Phing to make a graphviz diagram based on either source files or DB schema files.
A solution could be to do the following:
In your phing build file call the umlgraph command:
<exec command="/path/to/umlgraph ${file.javadoc_spec} png" dir="/path/to/javadoc_file"/>