Skip to content

Files

Latest commit

author
Libor Jonat
Jul 10, 2014
e50e01c · Jul 10, 2014

History

History
23 lines (14 loc) · 490 Bytes

README.rst

File metadata and controls

23 lines (14 loc) · 490 Bytes

DoctrineExtraBundle

Graph tool for Doctrine. Relies on Graphviz.

Resources/demo.png

Usage

Dump entity manager schema as graph

$ php app/console doctrine:mapping:graphviz
digraph G { ... }  # outputs a dot graph

If you want to create a PDF file out of it, with Linux:

$ php app/console doctrine:mapping:graphviz | dot -Tpdf -oout.pdf
$ xdg-open out.pdf