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

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

use Symfony\Component\Console\Application as ConsoleApplication;

$consApp = new ConsoleApplication();
$consApp->add(new \anvein\bx_creator\command\CreateComponentCommand(__DIR__));
$consApp->run();
