Graph tool for Doctrine. Relies on Graphviz.
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