fabiang/doctrine-migrations-liquibase-laminas

Laminas module for creating changesets for Liquibase with Doctrine

Installs: 369

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/fabiang/doctrine-migrations-liquibase-laminas

v2.0.0 2025-12-02 15:33 UTC

This package is auto-updated.

Last update: 2025-12-02 16:31:32 UTC


README

Laminas module for creating changesets for Liquibase with Doctrine.

Latest Stable Version Total Downloads License PHP Version Require Continuous Integration

Installation

New to Composer? Read the introduction. Run the following Composer command:

$ composer require --dev fabiang/doctrine-migrations-liquibase-laminas

Configuration

Load the module by adding it to config/development.config.php:

return [
    'modules' => [
        /** order shouldn't matter here, but it 'DoctrineModule' should be loaded before **/
        'Fabiang\DoctrineMigrationsLiquibase',
    ],
];

If you don't have a recommended development.config.php you can also add it to application.config.php. But you should not activate the module on production systems, as you don't need it there.

Usage

You should see two new command for doctrine-module when you execute the following command in your project:

./vendor/bin/doctrine-module list
  • orm:liquibase:createchangelog
  • orm:liquibase:creatediff

First creates the whole changelog XML file, second command creates just the diff.

Licence

BSD-2-Clause. See the LICENSE.md.