janalis / doctrineviz
Render a graphical representation of a Doctrine2 mapped database
Installs: 70
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 1
Open Issues: 1
Type:symfony-bundle
Requires
- php: >=7.1
Requires (Dev)
- doctrine/doctrine-bundle: ^1.6
- doctrine/orm: ^2.5
- incenteev/composer-parameter-handler: ^2.1
- phpunit/phpunit: ^6.2
- satooshi/php-coveralls: ^1.0
- symfony/monolog-bundle: ^3.1.0
- symfony/phpunit-bridge: ^3.0
- symfony/symfony: ^3.4
README
Render a graphical representation of a Doctrine2 mapped database.
Example
Installation
Require package through composer:
$ composer require --dev janalis/doctrineviz
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. new Janalis\Doctrineviz\DoctrinevizBundle(), } // ... } // ... }
In order to be able to use the graph drawing feature you'll have to install GraphViz (dot executable).
Mac OS
$ brew install graphviz
Ubuntu
$ sudo apt install -y graphviz
Windows
Windows users may download GraphViZ for Windows.
Usage
Into your symfony project:
$ php app/console doctrine:generate:viz --help