-
Notifications
You must be signed in to change notification settings - Fork 10
Doc » Installation guide
Bart van Hoekelen edited this page Apr 20, 2017
·
1 revision
Get PHP terminal style tool by running the Composer command in the command line.
$ composer require bvanhoekelen/terminal-style
Open your file and use terminal_style()
// Print red text
echo terminal_style('Here your text', 'red');Get PHP terminal style tool by running the Composer command in the command line.
$ composer require bvanhoekelen/terminal-style
Open your file and use terminal_style()
// Require vender autoload
require_once('../vendor/autoload.php');
// Print red text
echo terminal_style('Here your text', 'red');Return to wiki home page