From a5ed0e3cb7d8477fc3a09eb692a417f7078ec5e0 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 7 Feb 2017 16:51:29 +0100 Subject: php-phpunit-mock-objects4: 4.0.0 - New package --- composer.json | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..d445041 --- /dev/null +++ b/composer.json @@ -0,0 +1,53 @@ +{ + "name": "phpunit/phpunit-mock-objects", + "description": "Mock Object library for PHPUnit", + "type": "library", + "keywords": [ + "xunit", + "mock" + ], + "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sb@sebastian-bergmann.de", + "role": "lead" + } + ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit-mock-objects/issues", + "irc": "irc://irc.freenode.net/phpunit" + }, + "require": { + "php": "^7.0", + "phpunit/php-text-template": "^1.2", + "doctrine/instantiator": "^1.0.2", + "sebastian/exporter": "^2.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "conflict": { + "phpunit/phpunit": "<6.0" + }, + "suggest": { + "ext-soap": "*" + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "autoload-dev": { + "classmap": [ + "tests/_fixture/" + ] + }, + "extra": { + "branch-alias": { + "dev-master": "4.0.x-dev" + } + } +} + -- cgit