diff options
| author | Remi Collet <remi@remirepo.net> | 2026-04-03 07:45:07 +0200 |
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2026-04-03 07:45:07 +0200 |
| commit | e2238cb4f02ec10315cd4937774a1c0b12d96675 (patch) | |
| tree | 285a42e54e97ca6ccb131c1a276c6b3c51c24d86 /composer.json | |
dup v13
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..554aad1 --- /dev/null +++ b/composer.json @@ -0,0 +1,66 @@ +{ + "name": "phpunit/php-code-coverage", + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "type": "library", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy" + }, + "config": { + "platform": { + "php": "8.4.1" + }, + "optimize-autoloader": true, + "sort-packages": true + }, + "prefer-stable": true, + "require": { + "php": ">=8.4", + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^5.7.0", + "phpunit/php-text-template": "^6.0", + "sebastian/complexity": "^6.0", + "sebastian/environment": "^9.0", + "sebastian/lines-of-code": "^5.0", + "sebastian/version": "^7.0", + "theseer/tokenizer": "^2.0.1" + }, + "require-dev": { + "phpunit/phpunit": "^13.0" + }, + "suggest": { + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "autoload-dev": { + "classmap": [ + "tests/" + ] + }, + "extra": { + "branch-alias": { + "dev-main": "13.0.x-dev" + } + } +} |
