thecodingmachine / doctrine-migrations-universal-module
Cross-framework module for doctrine migrations
Requires
- php: >=7.1
- doctrine/migrations: ^1.6
- mouf/classname-mapper: ^1.0
- thecodingmachine/dbal-universal-module: ^0.4.2
- thecodingmachine/funky: ^1
- thecodingmachine/symfony-console-universal-module: ^0.4
Requires (Dev)
- mnapoli/simplex: ^0.4
- phpunit/phpunit: ^6.5.4
This package is auto-updated.
Last update: 2024-11-07 00:37:59 UTC
README
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