#!/usr/bin/env php
<?php
/**
 * @author    Igor Nikolaev <igor.sv.n@gmail.com>
 * @copyright Copyright (c) 2018, 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 __DIR__.'/../vendor/autoload.php';

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

$app = new Application('Fileman', '@package_version@');
$app->addCommands([
    new PullCommand(),
    new PushCommand(),
    new UpdateCommand(),
]);
$app->run();
