tallieutallieu/oak-console-table

There is no license information available for the latest version (1.0.3) of this package.

Console tables for Oak commands

1.0.3 2021-03-24 07:20 UTC

This package is auto-updated.

Last update: 2024-04-12 13:30:18 UTC


README

Console tables for Oak

Installation

composer require tallieutallieu/oak-console-table

Example usage

<?php

$table = new \Tnt\ConsoleTable\Table($output); // $output = OutputInterface

$table->setHeaders(['Id', 'Username', 'Email address',]);
$table->setRows([
    [1, 'Rein', 'reinvanoyen@gmail.com',],
    [2, 'JohnDoe21', 'johndoe@hotmail.com',],
    [3, 'butterfly1982', 'butterfly54@gmail.com',],
]);

$table->addRow([4, 'user45', 'johndoe122@gmail.com',]);

$table->output();