graviton/mongodb-migrations-bundle

Symfony MongoDBMigrationsBundle

This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.

Installs: 7 002

Dependents: 1

Suggesters: 0

Security: 0

Stars: 1

Watchers: 4

Forks: 0

Open Issues: 0

Type:symfony-bundle

pkg:composer/graviton/mongodb-migrations-bundle

v2.0.2 2024-01-18 07:39 UTC

This package is auto-updated.

Last update: 2024-10-18 09:30:26 UTC


README

This bundle integrates the DoesntMattr MongoDB Migrations library. into Symfony so that you can safely and quickly manage MongoDB migrations.

This is a new iteration which has the minimal integration into Symfony. At the moment it is not thought for external use.

Installation

Add the following to your composer.json file:

{
    "require": {
        "graviton/mongodb-migrations-bundle": "~1.0"
    }
}

Install the libraries by running:

composer install

Be sure to enable the bundle in AppKernel.php by including the following:

// app/AppKernel.php
public function registerBundles()
{
    $bundles = array(
        //...
        new Graviton\MigrationBundle\GravitonMigrationBundle(),
    );
}