richjenks/consol

Micro framework for command line PHP apps

Installs: 8

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/richjenks/consol

dev-master 2018-02-06 08:20 UTC

This package is auto-updated.

Last update: 2025-10-10 06:40:27 UTC


README

It's like Slim for console applications

Hello, World!

// index.php
$app = new RichJenks\Consol\App;

$app->map('hello', function ($app) {
    $app->say('Hello World');
});
# terminal
php index.php hello
# Hello, World!

Features

  • 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/