#!/usr/bin/env php -q
<?php
require_once __DIR__ . '/../vendor/autoload.php';

use Symfony\Component\Console\Application;
use whikloj\BagItTools\Commands\ValidateCommand;

$app = new Application();
$app->add(new ValidateCommand());
$app->run();
