#!/usr/bin/env php
<?php
require __DIR__.'/../vendor/autoload.php';

use Symfony\Component\Console\Application;
use Mediashare\Spider\Command\ModuleCommand;
use Mediashare\Spider\Command\SpiderCommand;

$application = new Application();
$application->add(new SpiderCommand());
$application->add(new ModuleCommand());
$application->run();