webberwu/phpunit-pretty-print

Prettify PHPUnit output

Installs: 135

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 25

pkg:composer/webberwu/phpunit-pretty-print

1.0.0 2018-06-05 09:22 UTC

This package is auto-updated.

Last update: 2025-10-21 22:09:05 UTC


README

Forked from sempro/phpunit-pretty-print:1.0.3

PRs Welcome eslint

phpunit-pretty-print

Installation

composer require webberwu/phpunit-pretty-print --dev

Usage

You can specify the printer to use on the phpunit command line:

php vendor/bin/phpunit --printer 'Webber\PHPUnitPrettyPrinter\PrettyPrinter' tests/

Optionally, you can add it to your project's phpunit.xml file instead:

<phpunit
    bootstrap="bootstrap.php"
    colors="true"
    printerClass="Webber\PHPUnitPrettyPrinter\PrettyPrinter">