PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Eric Sizemore   PHPUnit Coverage Report Check   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHPUnit Coverage Report Check
Check code coverage using the clover xml report.
Author: By
Last change: Update phpstan/* to 2.0
Prepare release
chore(deps,maint): refresh lock file, CS fixes
chore: bring in line with other projects
fix composer.json, accidentally a config
add phpstan/extension-installer
update workflows

Removes 'main' and 'tests' workflows to combine them into one. Adds 'merge-me' action to attempt auto-merging renovate PR's.
refresh lock file
Update composer.lock

Brings phpstan dev dependencies to their stable, non-dev, releases.
Date: 3 days ago
Size: 3,076 bytes
 

Contents

Class file image Download
{ "name": "esi/phpunit-coverage-check", "description": "Check the code coverage using the clover report of PHPUnit.", "license": "MIT", "type": "library", "keywords": [ "test", "testing", "testing-tools", "coverage", "coverage-report", "phpunit", "unit-testing", "code-coverage", "code-coverage-checker" ], "authors": [ { "name": "Eric Sizemore", "email": "admin@secondversion.com", "role": "Developer" }, { "name": "Richard Regeer", "email": "rich2309@gmail.com", "role": "Original Developer" } ], "support": { "issues": "https://github.com/ericsizemore/phpunit-coverage-check/issues", "forum": "https://github.com/ericsizemore/phpunit-coverage-check/discussions", "source": "https://github.com/ericsizemore/phpunit-coverage-check/tree/master", "security": "https://github.com/ericsizemore/phpunit-coverage-check/security/policy" }, "funding": [ { "type": "custom", "url": "https://ko-fi.com/ericsizemore" }, { "type": "github", "url": "https://github.com/ericsizemore" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/packagist/esi/phpunit-coverage-check" } ], "_comment": [ "This package is also offered as a Phar binary, which can be downloaded from the latest", "release on GitHub at https://github.com/ericsizemore/phpunit-coverage-check/releases" ], "require": { "php": "^8.2 <8.5", "ext-libxml": "*", "ext-simplexml": "*", "symfony/console": "^7.1" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.64", "phpstan/extension-installer": "^1.4", "phpstan/phpstan": "^2.0", "phpstan/phpstan-deprecation-rules": "^2.0", "phpstan/phpstan-phpunit": "^2.0", "phpstan/phpstan-strict-rules": "^2.0", "phpunit/phpunit": "^11.4" }, "minimum-stability": "dev", "prefer-stable": true, "autoload": { "psr-4": { "Esi\\CoverageCheck\\": "src/" } }, "autoload-dev": { "psr-4": { "Esi\\CoverageCheck\\Tests\\": "tests/src" } }, "bin": [ "coverage-check" ], "config": { "allow-plugins": { "phpstan/extension-installer": true }, "platform": { "php": "8.2.0" } }, "extra": { "branch-alias": { "dev-master": "2.x-dev" } }, "scripts": { "clear-build": "rm -rf ./build/*", "cs:check": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --dry-run --diff", "cs:fix": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php", "phpstan": "vendor/bin/phpstan analyse -c phpstan.neon -vvv", "test": "phpunit" } }