Migrations Events ================= The Doctrine Migrations library emits a series of events during the migration process. - ``onMigrationsMigrating``: dispatched immediately before starting to execute versions. This does not fire if there are no versions to be executed. - ``onMigrationsVersionExecuting``: dispatched before a single version executes. - ``onMigrationsVersionExecuted``: dispatched after a single version executes. - ``onMigrationsVersionSkipped``: dispatched when a single version is skipped. - ``onMigrationsMigrated``: dispatched when all versions have been executed. All of these events are emitted via the DBAL connection's event manager. Here's an example event subscriber that listens for all possible migrations events. .. code-block:: php getEventManager()->addEventSubscriber(new MigrationsListener()); // rest of the cli set up... :ref:`Next Chapter: Version Numbers `