Graph tool for Doctrine. Relies on Graphviz.
Install the latest version with
composer require --dev alexandresalome/doctrine-extra-bundle
Then, enable the bundle by adding the following line in the app/AppKernel.php
file of your project:
// app/AppKernel.php
class AppKernel extends Kernel
{
public function registerBundles()
{
//...
if (in_array($this->getEnvironment(), ['dev', 'test'])) {
// ...
// Because the vendor code could be not present, you should check if the bundle is here before using it.
$bundles[] = new Alex\DoctrineExtraBundle\AlexDoctrineExtraBundle();
}
// ...
}
// ...
}
php app/console doctrine:mapping:graphviz
or
php app/console doctrine:mapping:graphviz --use-random-edge-color --business-split-file=business-restriction-example.yml --font=Arial
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
A set of sample entities are available to test internally the schema generations. You can generate the graph for any of the samples (located in Tests/Fixtures) by running:
./Resources/bin/graph Simple | dot -Tpdf -oout.pdf
xdg-open out.pdf
Use phpunit 5