php-parallel-lint/php-console-highlighter

Highlight PHP code in terminal

Maintainers

👁 grogy
👁 jrfnl

Package info

github.com/php-parallel-lint/PHP-Console-Highlighter

pkg:composer/php-parallel-lint/php-console-highlighter

Statistics

Installs: 31 728 758

Dependents: 631

Suggesters: 5

Stars: 88

Open Issues: 2

v1.0.0 2022-02-18 08:23 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

MIT 5b4803384d3303cf8e84141039ef56c8a123138d


README

👁 Downloads this Month
👁 CS
👁 Test
👁 License
👁 Coverage Status

Highlight PHP code in console (terminal).

Example

👁 Example

Install

Just run the following command to install it:

composer require --dev php-parallel-lint/php-console-highlighter:"0.*"

Usage

<?php
use PHP_Parallel_Lint\PhpConsoleColor\ConsoleColor;
use PHP_Parallel_Lint\PhpConsoleHighlighter\Highlighter;

require __DIR__ . '/vendor/autoload.php';

$highlighter = new Highlighter(new ConsoleColor());

$fileContent = file_get_contents(__FILE__);
echo $highlighter->getWholeFile($fileContent);