#!/usr/bin/env php
<?php
/**
 * This file is part of the SVN-Buddy library.
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 *
 * @copyright Alexander Obuhovich <aik.bold@gmail.com>
 * @link      https://github.com/console-helpers/svn-buddy
 */

require_once dirname(__DIR__) . '/vendor/autoload.php';

$container = new \ConsoleHelpers\SVNBuddy\Container();
$app = new \ConsoleHelpers\SVNBuddy\Application($container);
$app->run();
