thecodingmachine/doctrine-migrations-universal-module

Cross-framework module for doctrine migrations

dev-master / 1.0.x-dev 2017-12-14 15:31 UTC

This package is auto-updated.

Last update: 2024-09-07 00:07:16 UTC


README

Latest Stable Version Latest Unstable Version License Build Status

Doctrine Migrations universal module

This package integrates Doctrine Migrations in any container-interop compatible framework/container.

Installation

composer require thecodingmachine/doctrine-migrations-universal-module

Once installed, you need to register the TheCodingMachine\DoctrineMigrationsServiceProvider into your container.

If your container supports thecodingmachine/discovery integration, you have nothing to do. Otherwise, refer to your framework or container's documentation to learn how to register service providers.

Introduction

This service provider is meant to add support for Doctrine migrations in your application. It is expected that your application already has a Doctrine DBAL connection and a Symfony Console.

Both packages are dependencies of this package.

Expected values / services

This service provider expects the following configuration / services to be available:

Provided services

This service provider provides the following services:

Extended services

This service provider extends those services:

Project template courtesy of thecodingmachine/service-provider-template