graviton / mongodb-migrations-bundle
Symfony MongoDBMigrationsBundle
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 7 002
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=7.1.0
- doctrine/mongodb-odm-bundle: >=4.0.0
- graviton/mongodb-migrations: ~3
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(), ); }