storeman / graph-uml
Generate UML class diagrams by reflection for your PHP projects
Requires
- php: >=7.4
- clue/graph: 0.9.*
- graphp/algorithms: 0.8.*
- graphp/graphviz: 0.2.*
Requires (Dev)
- phpunit/phpunit: ~9
This package is not auto-updated.
Last update: 2025-03-10 21:54:26 UTC
README
Generate UML class diagrams by reflection for your PHP projects
Note: This project is in beta stage! Feel free to report any issues you encounter. Note: This project is forked from clue/graph-uml. It supports PHP7 and uses phpunit 7
Quickstart example
Once installed, you can use the following code to draw an UML class diagram for your existing classes:
// initialize an empty graph and the UML class diagram builder $graph = new Fhaculty\Graph\Graph(); $builder = new Fhaculty\Graph\Uml\ClassDiagramBuilder($graph); // let's add some classes to the diagram $builder->createVertexClass('Fhaculty\Graph\Uml\ClassDiagramBuilder'); // display graph as svg image $graphviz = new Fhaculty\Graph\GraphViz($graph); $graphviz->display();
Install
The recommended way to install this library is through composer. New to composer?
{ "require": { "storeman/graph-uml": "0.3.*" } }
Additionally, you'll have to install GraphViz (dot
executable).
Users of Debian/Ubuntu-based distributions may simply invoke:
$ sudo apt-get install graphviz
Windows users have to download GraphViZ for Windows and remaining users should install from GraphViz homepage.
License
MIT