#!/usr/bin/env php
<?php

include_once __DIR__ . '/../../../autoload.php';
include_once __DIR__ . '/../src/SyncerCommand.php';

use Bmitch\Envsync\Collectors\FileCollector;
use Bmitch\Envsync\Finders\EnvironmentFinder;
use Bmitch\Envsync\Builders\TableBuilder;

$cli = new Bmitch\Envsync\SyncerCommand(new FileCollector, new EnvironmentFinder, new TableBuilder);
$cli->handle($argv);
