From ae6bd455aaaccd62079f329543b06177c2a2c029 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 8 Feb 2017 14:29:53 +0100 Subject: phpcov: 4.0.0 - New package --- composer.json | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100755 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100755 index 0000000..309130b --- /dev/null +++ b/composer.json @@ -0,0 +1,39 @@ +{ + "name": "phpunit/phpcov", + "description": "CLI frontend for PHP_CodeCoverage", + "homepage": "https://github.com/sebastianbergmann/phpcov", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpcov/issues" + }, + "require": { + "php": "^7.0", + "phpunit/phpunit": "^6.0", + "phpunit/php-code-coverage": "^5.0", + "sebastian/diff": "^1.1", + "sebastian/finder-facade": "^1.1", + "sebastian/version": "^2.0", + "symfony/console": "^3" + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "bin": [ + "phpcov" + ], + "extra": { + "branch-alias": { + "dev-master": "4.0.x-dev" + } + } +} + -- cgit