olive-cms/colorconsole

php colorconsole

1.0.1 2018-08-18 18:11 UTC

This package is auto-updated.

Last update: 2024-09-22 03:29:08 UTC


README

ColorConsole customized https://github.com/kevinlebrun/colors.php/ for Olive: color.php license: (The MIT License) Copyright (c) 2018 Kevin Le Brun lebrun.k@gmail.com

Installation

Install the latest version with

$ composer require olive-cms/colorconsole

Basic Usage

require_once 'vendor/autoload.php';
use Olive\Tools\ColorConsole;

echo ColorConsole::render(
  'Your Message',
  [
    'color' => 'magenta',
    'background' => 'white',
    'style' => ['bold', 'reverse'],
    'align' => 'center'
  ]
);

Documentation

Requirements

  • PHP 5.5+.

License

olive-cms/colorconsole is licensed under the MIT license.