fershopls/console

There is no license information available for the latest version (dev-master) of this package.

Helpers for PHP Console Applications. :)

dev-master 2015-04-19 09:05 UTC

This package is not auto-updated.

Last update: 2024-04-17 07:32:57 UTC


README

Just some helpers for PHP Console Applications. :)

 

Usage

$output->puts("Hello there!");
$output->puts("What's your name?");

// Get the stream
$name = $input->get();
$output->puts("Nice to meet you " . ucfirst($name) . "!");

 

Installation

Composer JSON File

{
    "require": {
        "fershopls/console": "dev-master"
    }
}