This module integrates the Doctrine Migrations library. into Zend Framework so that you can load data fixtures programmatically into the Doctrine ORM or ODM.
Installation of this module uses composer. For composer documentation, please refer to getcomposer.org.
$ composer require kenkataiwa/doctrine-migrations-moduleThen open config/application.config.php and add DoctrineModule, DoctrineORMModule and
DoctrineMigrationsModule to your modules
To configure migrations with Doctrine module add the migrations in your configuration.
<?php
return array(
...
'doctrine' => array(
'migrations' => array(
'migrations_table' => 'migrations',
'migrations_namespace' => 'Application',
'migrations_directory' => './data/migrations',
),
),
...
);Access the Doctrine command line



