wizad/doctrine-doc-bundle

Generates documentation for your doctrine ORM schema.

Installs: 90

Dependents: 0

Suggesters: 0

Security: 0

Stars: 15

Watchers: 1

Forks: 1

Open Issues: 1

Type:symfony-bundle

pkg:composer/wizad/doctrine-doc-bundle

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

This package is auto-updated.

Last update: 2025-09-17 22:01:44 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>