summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-06-03 09:40:51 +0200
committerRemi Collet <fedora@famillecollet.com>2016-06-03 09:40:51 +0200
commite87329b2d8654aba8507c5044588f233204084f1 (patch)
tree216d260b88134017b5af87e6d90bd3e5d34d01d3 /composer.json
parent7d551d1cde091c6a61042793b7bcf08a36fc3113 (diff)
php-phpunit-phpcov: 3.1.0
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json39
1 files changed, 39 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..1a58f16
--- /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": ">=5.3.3",
+ "phpunit/phpunit": ">=4.1",
+ "phpunit/php-code-coverage": "~2.0",
+ "sebastian/diff": "~1.1",
+ "sebastian/finder-facade": "~1.1",
+ "sebastian/version": "~1.0",
+ "symfony/console": "~2.2"
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "bin": [
+ "phpcov"
+ ],
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ }
+}
+