#!/usr/bin/env php
<?php declare(strict_types = 1);

require_once('vendor/autoload.php');

use Apishka\Tester\Command;

$application = new \Symfony\Component\Console\Application();
$application->add(new Command\Tester);
$application->setDefaultCommand('apishka:tester');
$application->run();
