From c5d3b8e8b38e31e2f7a1f3805435ffcbe989e0b0 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 7 Feb 2017 16:54:05 +0100 Subject: phpunit6: 6.0.5 - New package --- composer.json | 83 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..2eb834d --- /dev/null +++ b/composer.json @@ -0,0 +1,83 @@ +{ + "name": "phpunit/phpunit", + "description": "The PHP Unit Testing framework.", + "type": "library", + "keywords": [ + "phpunit", + "xunit", + "testing" + ], + "homepage": "https://phpunit.de/", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues" + }, + "require": { + "php": "^7.0", + "phpunit/php-file-iterator": "^1.4", + "phpunit/php-text-template": "^1.2", + "phpunit/php-code-coverage": "^5.0", + "phpunit/php-timer": "^1.0.6", + "phpunit/phpunit-mock-objects": "^4.0", + "phpspec/prophecy": "^1.6.2", + "sebastian/comparator": "^1.2.4", + "sebastian/diff": "^1.2", + "sebastian/environment": "^2.0", + "sebastian/exporter": "^2.0", + "sebastian/global-state": "^1.1", + "sebastian/object-enumerator": "^2.0", + "sebastian/resource-operations": "^1.0", + "sebastian/version": "^2.0", + "myclabs/deep-copy": "^1.3", + "ext-dom": "*", + "ext-json": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-libxml": "*" + }, + "require-dev": { + "ext-PDO": "*" + }, + "conflict": { + "phpunit/dbunit": "<3.0", + "phpdocumentor/reflection-docblock": "3.0.2" + }, + "config": { + "platform": { + "php": "7.0.0" + } + }, + "suggest": { + "phpunit/php-invoker": "^1.1", + "ext-xdebug": "*" + }, + "bin": [ + "phpunit" + ], + "autoload": { + "classmap": [ + "src/" + ] + }, + "autoload-dev": { + "classmap": [ + "tests/" + ], + "files": [ + "src/Framework/Assert/Functions.php", + "tests/_files/CoveredFunction.php" + ] + }, + "extra": { + "branch-alias": { + "dev-master": "6.0.x-dev" + } + } +} -- cgit