#!/usr/bin/env php
<?php
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Component\Console\Input\ArgvInput;
set_time_limit(0);
require __DIR__.'/../../vendor/autoload.php';
include __DIR__.'/../Fixtures/App/AppKernel.php';
$input = new ArgvInput();
$application = new Application(new AppKernel('test', true));
$application->run($input);
