It's like Slim for console applications
// index.php
$app = new RichJenks\Consol\App;
$app->map('hello', function ($app) {
$app->say('Hello World');
});
# terminal
php index.php hello
# Hello, World!
- Routes terminal requests
- Simplifies parameters and options
- Generates command directory
- Packages your app as a PHAR
Read full documentation at https://richjenks.github.io/consol/