Skip to content

Instantly share code, notes, and snippets.

@osteel
Created February 6, 2022 12:47
Show Gist options
  • Save osteel/514a2c7e3f1eabf87803b0bb8aaa779b to your computer and use it in GitHub Desktop.
Save osteel/514a2c7e3f1eabf87803b0bb8aaa779b to your computer and use it in GitHub Desktop.
#!/usr/bin/env php
<?php
require __DIR__.'/../vendor/autoload.php';
use Osteel\PhpCliDemo\Commands\Play;
use Symfony\Component\Console\Application;
$application = new Application();
$application->add(new Play());
$application->run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment