DarvinDatabaserBundle
This bundle integrates "darvinstudio/databaser" with Symfony. It allows to easily pull remote database into the local one
or push local database into the remote one., (*1)
Installation
- Install package using Composer:
$ composer require darvinstudio/darvin-databaser-bundle
- Register bundle in your AppKernel class:
// app/AppKernel.php
public function registerBundles()
{
$bundles = [
// ...
new Darvin\DatabaserBundle\DarvinDatabaserBundle(),
// ...
];
}
Usage
Pull database
$ /usr/bin/env php bin/console databaser:pull [-k|--key [KEY]] [-p|--password] [-P|--port [PORT]] <user@host> <project_path_remote> [<project_path_local>]
Examples:, (*2)
$ /usr/bin/env php bin/console databaser:pull root@example.com www/example.com
$ /usr/bin/env php bin/console databaser:pull -P 123 root@example.com /var/www/example.com
Push database
$ /usr/bin/env php bin/console databaser:push [-k|--key [KEY]] [-p|--password] [-P|--port [PORT]] <user@host> <project_path_remote> [<project_path_local>]
Examples:, (*3)
$ /usr/bin/env php bin/console databaser:push root@example.com www/example.com
$ /usr/bin/env php bin/console databaser:push -P 123 root@example.com /var/www/example.com