├── .gitignore ├── LICENSE.md ├── README.md ├── assets └── table.png ├── composer.json ├── composer.lock ├── docs └── CONTRIBUTING.md ├── psalm.xml ├── src ├── Builder.php ├── Cell.php ├── CellInterface.php ├── Exception │ └── BuilderException.php ├── Row.php ├── RowInterface.php ├── Table.php └── TableInterface.php └── tests ├── BuilderTest.php ├── CellTest.php ├── RowTest.php └── TableTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malios/php-to-ascii-table/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malios/php-to-ascii-table/HEAD/README.md -------------------------------------------------------------------------------- /assets/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malios/php-to-ascii-table/HEAD/assets/table.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malios/php-to-ascii-table/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malios/php-to-ascii-table/HEAD/composer.lock -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malios/php-to-ascii-table/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malios/php-to-ascii-table/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malios/php-to-ascii-table/HEAD/src/Builder.php -------------------------------------------------------------------------------- /src/Cell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malios/php-to-ascii-table/HEAD/src/Cell.php -------------------------------------------------------------------------------- /src/CellInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malios/php-to-ascii-table/HEAD/src/CellInterface.php -------------------------------------------------------------------------------- /src/Exception/BuilderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malios/php-to-ascii-table/HEAD/src/Exception/BuilderException.php -------------------------------------------------------------------------------- /src/Row.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malios/php-to-ascii-table/HEAD/src/Row.php -------------------------------------------------------------------------------- /src/RowInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malios/php-to-ascii-table/HEAD/src/RowInterface.php -------------------------------------------------------------------------------- /src/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malios/php-to-ascii-table/HEAD/src/Table.php -------------------------------------------------------------------------------- /src/TableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malios/php-to-ascii-table/HEAD/src/TableInterface.php -------------------------------------------------------------------------------- /tests/BuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malios/php-to-ascii-table/HEAD/tests/BuilderTest.php -------------------------------------------------------------------------------- /tests/CellTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malios/php-to-ascii-table/HEAD/tests/CellTest.php -------------------------------------------------------------------------------- /tests/RowTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malios/php-to-ascii-table/HEAD/tests/RowTest.php -------------------------------------------------------------------------------- /tests/TableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malios/php-to-ascii-table/HEAD/tests/TableTest.php --------------------------------------------------------------------------------