champs-libres/composer-bundle-migration

Move DoctrineMigrations files from installed bundle to root package.

2.0.0 2020-07-31 13:50 UTC

This package is auto-updated.

Last update: 2024-03-29 02:52:55 UTC


README

Migrate Doctrine Migrations files from installed bundles to the root package.

Installation

In your root package :

composer require champs-libres/composer-bundle-migration ~1.0

Add the post-install-cmd and post-update-cmd in your root composer.json :

"scripts": {
        "post-install-cmd": [
            "ComposerBundleMigration\\Composer\\Migrations::synchronizeMigrations"
        ],
        "post-update-cmd": [
            "ComposerBundleMigration\\Composer\\Migrations::synchronizeMigrations"
        ]      
    }

Configure migration directory

In your root package, you may configure the directory where migrations files are copied.

In composer.json:

"extra": {
    "appMigrationsDir": "path/to/my/dir"
}

Default is app/DoctrineMigrations (the default for doctrine-migrations-bundle).

Configure migration source dir

In the installed packages, you may also configure the directory where migrations files are located.

"extra": {
    "migration-source": "path/to/my/source/folder"
}

Default is Resources/migrations.