Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 870 Bytes

File metadata and controls

42 lines (31 loc) · 870 Bytes

Doctrine UI

Provides a simplistic UI and API to generate doctrine entities and tables.

Installation

  1. add the following line to app/AppKernel.php.
new mmarchio\mmarchioDoctrineUIBundle\mmarchioDoctrineUIBundle(),

  1. add the following to app/config/routing.yml.
app:
    resource: '@mmarchioDoctrineUIBundle/Controller/'
    type: annotation

    resource: '@mmarchioDoctrineUIBundle/Resources/'
    type: annotation

  1. add the following to app/config/config.yml.
twig:
    paths:
          "%kernel.project_dir%/src/mmarchio/mmarchioDoctrineUIBundle/Resources/views": doctrineUI
  1. add the following to composer.json.
        "psr-4": {
            "mmarchio\\mmarchioDoctrineUIBundle\\": "src/mmarchio/mmarchioDoctrineUIBundle"
        }    
  1. run
php bin/console asset:install --symlink