Lines Matching +full:php +full:- +full:version
1 …](https://p…
2 …atus](https://travis-ci.org/sebastianbergmann/php-code-coverage.svg?branch=master)](https://travis…
6 …rary that provides collection, processing, and rendering functionality for PHP code coverage infor…
10 PHP 5.6 is required but using the latest version of PHP is highly recommended.
12 ### PHP 5
14 … of raw code coverage data supported for PHP 5. Version 2.2.1 of Xdebug is required but using the …
16 ### PHP 7
18 Version 2.4.0 (or later) of [Xdebug](http://xdebug.org/) as well as [phpdbg](http://phpdbg.com/docs…
22 A version of HHVM that implements the Xdebug API for code coverage (`xdebug_*_code_coverage()`) is …
26 You can add this library as a local, per-project dependency to your project using [Composer](https:…
28 composer require phpunit/php-code-coverage
30 …instance to run your project's test suite, then you should add it as a development-time dependency:
32 composer require --dev phpunit/php-code-coverage
36 ```php
37 <?php
39 $coverage->start('<name of test>');
43 $coverage->stop();
46 $writer->process($coverage, '/tmp/clover.xml');
49 $writer->process($coverage, '/tmp/code-coverage-report');