https://github.com/libgraviton/mongodb-migrations-bundle
https://github.com/libgraviton/mongodb-migrations-bundle
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/libgraviton/mongodb-migrations-bundle
- Owner: libgraviton
- Created: 2018-09-17T07:28:46.000Z (over 6 years ago)
- Default Branch: develop
- Last Pushed: 2024-01-18T07:39:06.000Z (over 1 year ago)
- Last Synced: 2024-11-08T02:49:19.646Z (6 months ago)
- Language: PHP
- Size: 34.2 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## mongodb-migrations-bundle
This bundle integrates the [DoesntMattr MongoDB Migrations library](https://github.com/doesntmattr/mongodb-migrations).
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:
```json
{
"require": {
"graviton/mongodb-migrations-bundle": "~1.0"
}
}
```Install the libraries by running:
```bash
composer install
```Be sure to enable the bundle in AppKernel.php by including the following:
```php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
//...
new Graviton\MigrationBundle\GravitonMigrationBundle(),
);
}
```