nicmart / live-terminal
Live data on the terminal
v0.1.3
2015-11-02 11:55 UTC
Requires
- php: >=5.3
Requires (Dev)
- satooshi/php-coveralls: dev-master
This package is not auto-updated.
Last update: 2024-10-30 10:06:57 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';