Add initial command

This commit is contained in:
Oliver Davies 2024-02-19 08:00:00 +00:00
parent adf4d2e0e3
commit 1907dde82f

14
versa Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env php
<?php
require __DIR__.'/vendor/autoload.php';
use Symfony\Component\Console\SingleCommandApplication;
$application = new SingleCommandApplication();
$application->setCode(function (): int {
return 0;
});
$application->run();