wizad / doctrine-doc-bundle
Generates documentation for your doctrine ORM schema.
Installs: 90
Dependents: 0
Suggesters: 0
Security: 0
Stars: 15
Watchers: 2
Forks: 1
Open Issues: 1
Type:symfony-bundle
Requires
- doctrine/doctrine-bundle: >=1.2.0
- doctrine/orm: ~2.2,>=2.2.3
- eloquent/blox: 2.0.*
- symfony/framework-bundle: ~2.1,<2.4
This package is auto-updated.
Last update: 2024-11-17 20:09:58 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>