#!/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\Bundle\FrameworkBundle\Console\Application;
use Webmozarts\Console\Parallelization\Integration\App\Kernel;
use function Safe\ini_set;

error_reporting(E_ALL);
ini_set('display_errors', '1');

$application = new Application(new Kernel());
$application->run();
