olegvb/cli-tools

Helper tools for CLI scripts

0.1.2 2016-08-25 06:07 UTC

This package is not auto-updated.

Last update: 2024-09-20 09:11:24 UTC


README

Various CLI tools to use in PHP scripts.

Please see project page here: https://github.com/olegvb/cli-tools

Installation

Using composer

$ composer require olegvb/cli-tools

Or include in your composer.json file:

{
    "require": {
        "olegvb/cli-tools": "~0.1"
    }
}

CLI Tools Tools:

Tick

Print progress ticks with various characters.

Usage:

use \Olegvb\CliTools\Tick;

for ($i=0;$i<1000;$i++) {
    Tick:tick();
}