thingston / coverage-check
Console script to check code coverage using Clover reports.
v1.1.320
2026-06-09 07:02 UTC
Requires
- php: >=8.1
- symfony/console: ^6.1
Requires (Dev)
- phpstan/phpstan: ^1.5
- phpunit/phpunit: ^9.5
- squizlabs/php_codesniffer: ^3.6
- symfony/var-dumper: ^6.0
This package is auto-updated.
Last update: 2026-06-09 07:03:29 UTC
README
Console script to check code coverage using Clover reports.
Requirements
- PHP 8.1
Instalation
composer require --dev thingston/coverage-check
Usage
From your project root run:
php vendor/bin/phpcov /path/to/coverage.xml 99
Or just this one to get more help:
php vendor/bin/phpcov --help
Testing
Available Composer scripts:
composer run test- Runs all tests using PHPUnit.composer run coverage:text- Runs all tests using PHPUnit and generates a coverage report to the console.composer run coverage:clover- Runs all tests using PHPUnit and generates an XML coverage report to filecoverage.xml.composer run coverage:html- Runs all tests using PHPUnit and generates an XML coverage report to directorycoverage.composer run coverage:check- Runs thecoverage:cloverscript and checks the code coverage rate (requires >= 90%).composer run analyze- Runs the PHPStan static analysis and displays the results to the console.composer run cs- Runs the Code Sniffer static analysis and displays any errors to the console.composer run cbf- Runs the Code Sniffer code fixer and displays the results to the console.composer run checks- Runs the scriptscs,analyzeandcoverage:checkand displays the results to the console.