Download the PHP package serendipity_hq/phpunit_profiler without Composer
On this page you can find all versions of the php package serendipity_hq/phpunit_profiler. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download serendipity_hq/phpunit_profiler
More information about serendipity_hq/phpunit_profiler
Files in serendipity_hq/phpunit_profiler
Download serendipity_hq/phpunit_profiler
More information about serendipity_hq/phpunit_profiler
Files in serendipity_hq/phpunit_profiler
Vendor serendipity_hq
Package phpunit_profiler
Short Description PHPUnit loggers to profile tests.
License MIT
Homepage https://github.com/SerendipityHQ/SHQ_PHPUnit_Profiler
Package phpunit_profiler
Short Description PHPUnit loggers to profile tests.
License MIT
Homepage https://github.com/SerendipityHQ/SHQ_PHPUnit_Profiler
Please rate this library. Is it a good library?
Informations about the package phpunit_profiler
SHQ_PHPUnit_Profiler
A PHPUnit listener to profile the execution of test suites and tests inside them.
This listener can show the time needed by each test and each test suite to complete and the memory used by each one of them.
Installation
Use Composer to install this listener:
$ composer require serendipity_hq/phpunit_profiler
To configure the listener you have to pass an array of options:
<listeners>
<listener class="SerendipityHQ\Library\PHPUnit_Profiler\Profiler">
<arguments>
<array>
<element key="time"><boolean>true</boolean></element>
<element key="profileTimeWithStopwatch"><boolean>true</boolean></element>
<element key="profileMemoryUsage"><boolean>true</boolean></element>
<element key="profileMemoryDetailedUsage"><boolean>true</boolean></element>
</array>
</arguments>
</listener>
</listeners>
The listener will output the profiling information.
NOTE: As this is a listener and not a ResultsPrinter
, it doesn't take care of the use of --verbose
or --debug
options.
All versions of phpunit_profiler with dependencies
PHP Build Version
Package Version
The package serendipity_hq/phpunit_profiler contains the following files
Loading the files please wait ....