├── .gitignore ├── .php_cs.dist ├── .travis.yml ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── preview.gif ├── src ├── PrettyPrinter.php ├── PrettyPrinterForPhpUnit9.php └── PrettyPrinterTrait.php └── tests ├── Output.php └── PrinterTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indentno/phpunit-pretty-print/HEAD/.gitignore -------------------------------------------------------------------------------- /.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indentno/phpunit-pretty-print/HEAD/.php_cs.dist -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indentno/phpunit-pretty-print/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indentno/phpunit-pretty-print/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indentno/phpunit-pretty-print/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indentno/phpunit-pretty-print/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indentno/phpunit-pretty-print/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indentno/phpunit-pretty-print/HEAD/phpunit.xml -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indentno/phpunit-pretty-print/HEAD/preview.gif -------------------------------------------------------------------------------- /src/PrettyPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indentno/phpunit-pretty-print/HEAD/src/PrettyPrinter.php -------------------------------------------------------------------------------- /src/PrettyPrinterForPhpUnit9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indentno/phpunit-pretty-print/HEAD/src/PrettyPrinterForPhpUnit9.php -------------------------------------------------------------------------------- /src/PrettyPrinterTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indentno/phpunit-pretty-print/HEAD/src/PrettyPrinterTrait.php -------------------------------------------------------------------------------- /tests/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indentno/phpunit-pretty-print/HEAD/tests/Output.php -------------------------------------------------------------------------------- /tests/PrinterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indentno/phpunit-pretty-print/HEAD/tests/PrinterTest.php --------------------------------------------------------------------------------