composer.json (882B)
1 { 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.3.3", 24 "phpunit/php-text-template": ">=1.1.1@stable" 25 }, 26 "suggest": { 27 "ext-soap": "*" 28 }, 29 "autoload": { 30 "classmap": [ 31 "PHPUnit/" 32 ] 33 }, 34 "include-path": [ 35 "" 36 ] 37 }