updated-packages
This commit is contained in:
36
vendor/php-parallel-lint/php-console-highlighter/README.md
vendored
Normal file
36
vendor/php-parallel-lint/php-console-highlighter/README.md
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
PHP Console Highlighter
|
||||
=======================
|
||||
|
||||
Highlight PHP code in console (terminal).
|
||||
|
||||
Example
|
||||
-------
|
||||

|
||||
|
||||
Install
|
||||
-------
|
||||
|
||||
Just run the following command to install it:
|
||||
|
||||
composer require --dev php-parallel-lint/php-console-highlighter:"0.*"
|
||||
|
||||
Usage
|
||||
-------
|
||||
```php
|
||||
<?php
|
||||
use JakubOnderka\PhpConsoleColor\ConsoleColor;
|
||||
use JakubOnderka\PhpConsoleHighlighter\Highlighter;
|
||||
|
||||
require __DIR__ . '/vendor/autoload.php';
|
||||
|
||||
$highlighter = new Highlighter(new ConsoleColor());
|
||||
|
||||
$fileContent = file_get_contents(__FILE__);
|
||||
echo $highlighter->getWholeFile($fileContent);
|
||||
```
|
||||
|
||||
------
|
||||
|
||||
[](https://packagist.org/packages/php-parallel-lint/php-console-highlighter)
|
||||
[](https://travis-ci.org/php-parallel-lint/PHP-Console-Highlighter)
|
||||
[](https://packagist.org/packages/php-parallel-lint/php-console-highlighter)
|
Reference in New Issue
Block a user