summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2017-02-07 16:54:05 +0100
committerRemi Collet <fedora@famillecollet.com>2017-02-07 16:54:05 +0100
commitc5d3b8e8b38e31e2f7a1f3805435ffcbe989e0b0 (patch)
tree55708e592be29450f3febfe449276f33bde0f270 /composer.json
phpunit6: 6.0.5 - New package
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json83
1 files changed, 83 insertions, 0 deletions
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"
+ }
+ }
+}