murganikolay/doctrine-migrations-module

This package is abandoned and no longer maintained. No replacement package was suggested.

Doctrine migrations module for Zend Framework 2

1.0.0 2013-01-17 17:26 UTC

This package is not auto-updated.

Last update: 2022-11-07 20:52:33 UTC


README

DoctrineMigrationsModule add migration commands to DoctrineModule Cli!

Version: 1.0.0

Istallation

Composer

  1. Add "murganikolay/doctrine-migrations-module": "1.0.0" to your composer.json file and run php composer.phar update.
  2. Add DoctrineMigrationsModule to your config/application.config.php file under the modules key.

If you use default minimum-stability ( default minimum-stability: stable) you need add modify root composer.json and add "doctrine/migrations": "v1.0-ALPHA1" to require section.

Manual

Not support!

Configuration

Change you Application config like this:

return array(
    ...
    'doctrine' => array(
        'migrations' => array(
            'migrations_table' => 'migrations',
            'migrations_namespace' => 'Application',
            'migrations_directory' => 'data/migrations',
        ),
    ),
    ...
);