jekys/console

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

Colorized output for CLI

0.0.1 2019-06-13 15:03 UTC

This package is auto-updated.

Last update: 2025-05-20 23:07:52 UTC


README

Colorized CLI tool helps to colorize CLI outputs

Requirements

  • php >= 5.4.0

Install

composer require jekys/console

Usage

require_once 'vendor/autoload.php';

use Jekys\Console;

Console::text('This is a simple text');
Console::notify('This is a notify text');
Console::error('This is an error text');
Console::success('This is a success text');