srmklive / phpunit-prettify
PHPUnit Pretty Result Printer
v1.2
2023-08-31 22:06 UTC
Requires
- hassankhan/config: ^0.10.0
- symfony/yaml: ~3.3|~4.0|~5.0|~6.0
Requires (Dev)
- phpunit/phpunit: ~7.0|~8.0|~9.0|~10.0
- spatie/phpunit-watcher: ^1.3
This package is auto-updated.
Last update: 2024-10-30 01:53:42 UTC
README
Introduction
This package provides support to prettify PHPUnit results output for PHPUnit 6+.
Credits
This package is a fork of PHPUnit Result Printer by Mike Erickson:
E-Mail: codedungeon@gmail.com
Twitter: @codedungeon
Website: https://github.com/mikeerickson
Installation
Installation is provided via composer and can be done with the following command:
composer require srmklive/phpunit-prettify
To activate the Printer for PHPUnit, just add it to your configuration XML:
<?xml version="1.0" encoding="UTF-8"?> <phpunit printerClass="Srmklive\PHPUnitPrettify\Printer"> // .... </phpunit>
Or from Command-Line:
phpunit --printer=Srmklive\\PHPUnitPrettify\\Printer