nicmart/live-terminal

Live data on the terminal

v0.1.3 2015-11-02 11:55 UTC

This package is not auto-updated.

Last update: 2024-04-17 07:45:29 UTC


README

A simple tool to write live data to the terminal output.

Install

The best way to install LiveTerminal is through composer.

Just create a composer.json file for your project:

{
    "require": {
        "nicmart/live-terminal": "~0.1"
    }
}

Then you can run these two commands to install it:

$ curl -s http://getcomposer.org/installer | php
$ php composer.phar install

or simply run composer install if you have have already installed the composer globally.

Then you can include the autoloader, and you will have access to the library classes:

<?php
require 'vendor/autoload.php';