tigerman/doctrine-generate-models-bundle

Symfony2 bundle to generate model classes from your mapping information from YAML.

This package's canonical repository appears to be gone and the package has been frozen as a result.

Installs: 628

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Type:symfony-bundle

v0.1.6 2017-03-07 08:51 UTC

This package is not auto-updated.

Last update: 2024-01-20 10:40:57 UTC


README

Symfony2 bundle to generate model classes from your mapping information from YAML.

Installation (Composer):

Add the following dependencies to your projects composer.json file:

{
    "require": {
        "tigerman/doctrine-generate-models-bundle": "*"
    }
}

Finally, be sure to enable the bundle in AppKernel.php by including the following:

// app/AppKernel.php
public function registerBundles()
{
    $bundles = array(
        //...
        new tigerman\DoctrineGenerateModelsBundle\DoctrineGenerateModelsBundle(),
    );
}

Usage:

php app/console doctrine:generate:models