schenke-io/terminal

PHP classes for simple terminal functionality

v1.2.0 2023-09-02 20:54 UTC

This package is auto-updated.

Last update: 2024-05-31 00:22:54 UTC


README

PHP classes for simple terminal functionality

ConsoleColor

To install just run:

  composer require schenke-io/terminal

Just call the static method and

<?php

use SchenkeIo\Terminal\ConsoleColor;

echo "Standard\n";
echo ConsoleColor::successLine('+ super !');

it will output:

Standard
+ super !

To see all styles run:

composer self-test-styles

To see all combinations try this:

composer self-test-all