benmacha / diagram-bundle
Symfony Diagram Bundle
Installs: 60
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 0
Open Issues: 0
Language:JavaScript
Type:symfony-bundle
Requires
- php: ^7.0|| ^8.0
- symfony/asset: ^4.0 || ^5.0 || ^6.0
- symfony/framework-bundle: ^4.0 || ^5.0 || ^6.0
- twig/twig: ^2.0||^3.0
README
"DiagramBundle" is a tool designed to facilitate the drawing of entities in a database and the relationships that connect them.
Installation
Add the benmacha/diagram-bundle
package to your require
section in the composer.json
file.
$ composer require benmacha/diagram-bundle ^1.0
Add the DiagramBundle in bundles.php:
<?php return [ // ... Benmacha\DiagramBundle\DiagramBundle::class => ['all' => true], // ... ];
Configure the Bundle
in your routes.yml
:
benmacha_diagram: resource: "@DiagramBundle/Resources/config/routing/routes.yml" prefix: /diagram
Dump js and css file
$ php app/console assets:install --symlink