#!/usr/bin/env php [arguments] [options] * php bin/console list * php bin/console --help * * Commands are auto-discovered from lib/Console/Commands/. * To add a new command, create a class extending Command in that directory. */ require_once __DIR__ . '/../vendor/autoload.php'; use MintyPHP\Console\ConsoleApplication; $app = new ConsoleApplication(); $app->discoverCommands(__DIR__ . '/../lib/Console/Commands'); exit($app->run($argv));