#!/usr/bin/env php
<?php
/**
 * @author    Igor Nikolaev <igor.sv.n@gmail.com>
 * @copyright Copyright (c) 2017, Darvin Studio
 * @link      https://www.darvin-studio.ru
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

require_once __DIR__.'/../vendor/autoload.php';

use Darvin\Databaser\Command\PullCommand;
use Darvin\Databaser\Command\PushCommand;
use Darvin\Databaser\Command\UpdateCommand;
use Symfony\Component\Console\Application;

$app = new Application('Databaser', '@package_version@');
$app->add(new PullCommand());
$app->add(new PushCommand());
$app->add(new UpdateCommand());
$app->run();
