diff options
author | Remi Collet <remi@remirepo.net> | 2017-12-01 10:13:31 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2017-12-01 10:13:31 +0100 |
commit | 04b3c621c73810fb805ca0b7a72cfd6d7e97c82f (patch) | |
tree | 56197298035648d0a50ca1fa342f2bdc173e4e25 /composer.json |
duplicate php-phpunit-mock-objects4
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..a31a583 --- /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.1", + "doctrine/instantiator": "^1.0.5", + "sebastian/exporter": "^3.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" + } + } +} + |