minor fix to prior commit
[openemr.git] / vendor / phpunit / phpunit-mock-objects / composer.json
blob78dfcf20065e9d3c8013eb0550a89d5cad42bb13
2     "name": "phpunit/phpunit-mock-objects",
3     "description": "Mock Object library for PHPUnit",
4     "type": "library",
5     "keywords": [
6         "xunit",
7         "mock"
8     ],
9     "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
10     "license": "BSD-3-Clause",
11     "authors": [
12         {
13             "name": "Sebastian Bergmann",
14             "email": "sb@sebastian-bergmann.de",
15             "role": "lead"
16         }
17     ],
18     "support": {
19         "issues": "https://github.com/sebastianbergmann/phpunit-mock-objects/issues",
20         "irc": "irc://irc.freenode.net/phpunit"
21     },
22     "require": {
23         "php": "^5.6 || ^7.0",
24         "phpunit/php-text-template": "^1.2",
25         "doctrine/instantiator": "^1.0.2",
26         "sebastian/exporter": "^1.2 || ^2.0"
27     },
28     "require-dev": {
29         "phpunit/phpunit": "^5.4"
30     },
31     "conflict": {
32         "phpunit/phpunit": "<5.4.0"
33     },
34     "suggest": {
35         "ext-soap": "*"
36     },
37     "autoload": {
38         "classmap": [
39             "src/"
40         ]
41     },
42     "autoload-dev": {
43         "classmap": [
44             "tests/_fixture/"
45         ]
46     },
47     "extra": {
48         "branch-alias": {
49             "dev-master": "3.2.x-dev"
50         }
51     }