The package will help you to render paginated tables and any plain text content in a console.
Make sure that your server is configured with following PHP version and extensions:
- PHP 8.1+
You can install the package via composer:
composer require roxblnfk/clitube
$core = (new \Roxblnfk\CliTube\Core($output))
$core->createComponent(\Roxblnfk\CliTube\Component\Paginator::class, [
new MyPaginator(), // Instanceof \Roxblnfk\CliTube\Data\Paginator
])
$core->run();
$core = (new \Roxblnfk\CliTube\Core($output))
$core->createComponent(\Roxblnfk\CliTube\Component\Scroll::class, [
'content' => 'Very long text',
'overwrite' => true,
])
$core->run();
composer test
The MIT License (MIT). Please see License File for more information.