├── .gitignore ├── .travis.yml ├── AlexDoctrineExtraBundle.php ├── CHANGELOG.md ├── CONTRIBUTORS.md ├── Command └── DoctrineMetadataGraphvizCommand.php ├── DependencyInjection └── AlexDoctrineExtraExtension.php ├── Graphviz ├── DoctrineMetadataGraph.php └── Pass │ ├── ImportMetadataPass.php │ └── InheritancePass.php ├── LICENSE ├── README.md ├── Resources ├── bin │ └── graph ├── config │ └── graphviz.xml └── demo.png ├── Tests ├── Fixtures │ ├── Inheritance │ │ ├── Animal.php │ │ ├── Frog.php │ │ └── Horse.php │ └── Simple │ │ ├── File.php │ │ ├── Folder.php │ │ └── User.php ├── Graphviz │ └── DoctrineMetadataGraphTest.php └── Sample.php ├── composer.json ├── out.pdf └── phpunit.xml.dist /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/.travis.yml -------------------------------------------------------------------------------- /AlexDoctrineExtraBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/AlexDoctrineExtraBundle.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Command/DoctrineMetadataGraphvizCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/Command/DoctrineMetadataGraphvizCommand.php -------------------------------------------------------------------------------- /DependencyInjection/AlexDoctrineExtraExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/DependencyInjection/AlexDoctrineExtraExtension.php -------------------------------------------------------------------------------- /Graphviz/DoctrineMetadataGraph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/Graphviz/DoctrineMetadataGraph.php -------------------------------------------------------------------------------- /Graphviz/Pass/ImportMetadataPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/Graphviz/Pass/ImportMetadataPass.php -------------------------------------------------------------------------------- /Graphviz/Pass/InheritancePass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/Graphviz/Pass/InheritancePass.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/bin/graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/Resources/bin/graph -------------------------------------------------------------------------------- /Resources/config/graphviz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/Resources/config/graphviz.xml -------------------------------------------------------------------------------- /Resources/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/Resources/demo.png -------------------------------------------------------------------------------- /Tests/Fixtures/Inheritance/Animal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/Tests/Fixtures/Inheritance/Animal.php -------------------------------------------------------------------------------- /Tests/Fixtures/Inheritance/Frog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/Tests/Fixtures/Inheritance/Frog.php -------------------------------------------------------------------------------- /Tests/Fixtures/Inheritance/Horse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/Tests/Fixtures/Inheritance/Horse.php -------------------------------------------------------------------------------- /Tests/Fixtures/Simple/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/Tests/Fixtures/Simple/File.php -------------------------------------------------------------------------------- /Tests/Fixtures/Simple/Folder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/Tests/Fixtures/Simple/Folder.php -------------------------------------------------------------------------------- /Tests/Fixtures/Simple/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/Tests/Fixtures/Simple/User.php -------------------------------------------------------------------------------- /Tests/Graphviz/DoctrineMetadataGraphTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/Tests/Graphviz/DoctrineMetadataGraphTest.php -------------------------------------------------------------------------------- /Tests/Sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/Tests/Sample.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /out.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/out.pdf -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandresalome/doctrine-extra-bundle/HEAD/phpunit.xml.dist --------------------------------------------------------------------------------