1
0

Init: add code scaffolding

This commit is contained in:
2023-10-17 16:12:04 +03:00
commit 1ef176f3f7
8 changed files with 2090 additions and 0 deletions

11
console.php Normal file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env php
<?php
require __DIR__ . '/vendor/autoload.php';
use Symfony\Component\Console\Application;
$application = new Application();
$application->add(new \App\ExchangeCardsCommand());
$application->run();