#!/usr/bin/env php

<?php
require_once __DIR__ . '/../vendor/autoload.php';

use Iamvar\CardGame\Command\TwentyOneCommand;
use Symfony\Component\Console\Application;

$app = new Application('Console Card Game 21', 'v1.0.0');
$app->add(new TwentyOneCommand());
$app->run();