wizad/doctrine-doc-bundle

Generates documentation for your doctrine ORM schema.

dev-master 2013-06-13 13:38 UTC

This package is auto-updated.

Last update: 2024-04-17 19:02:55 UTC


README

The WizadDoctrineDocBundle bundle allows you to generate a decent documentation for your doctrine model schema.

Installation

Add this bundle to your composer.json file:

{
    "require": {
        "wizad/doctrine-doc-bundle": "dev-master"
    }
}

Register the bundle in app/AppKernel.php:

// app/AppKernel.php
public function registerBundles()
{
    return array(
        // ...
        new Wizad\DoctrineDocBundle\WizadDoctrineDocBundle(),
    );
}

Usage

php app/console doctrine:generate:documentation <output_path>