Question

I'm developing a system using Codeigniter, and it's nearly completion, i didn't went for class diagrams first because it was hard to decide, so i straight away did coding and now i want to draw class diagrams for my project. do you guys know about a tool that i can use for generating class diagrams for my project?

Was it helpful?

Solution

If you want to draw them manually (ie. don't want reverse engineering to generate uml from your PHP source), then StarUML might be useful (if you're using Windows that is, but since you don't mention it I assume you do).

BTW The following question might be helpful too : PHP UML Generator

OTHER TIPS

phUML is the best tool I have encountered and only worked for me. You can easily generate a class diagram from your existing code.

Navigate to the folder and try the below command to generate the class diagram on linux

./phuml -r /var/www/my_project -graphviz -createAssociations false -neato out.png

phUML is fully automatic UML class diagramm generator written PHP. It is capable of parsing any PHP5 object oriented source code and create an appropriate image representation of the oo structure based on the UML specification.

More info

./phuml --help
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top