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

/*
 * This file is part of the Webmozarts Console Parallelization package.
 *
 * (c) Webmozarts GmbH <office@webmozarts.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

declare(strict_types=1);

require __DIR__.'/../vendor/autoload.php';

use Symfony\Component\Console\Application;
use Webmozarts\Console\Parallelization\Fixtures\Command\FrameworkLessCommand;

$application = new Application();
$application->add(new FrameworkLessCommand());

$application->run();
