diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..83a8818 --- /dev/null +++ b/composer.json @@ -0,0 +1,37 @@ +{ + "name": "phpspec/prophecy-phpunit", + "description": "Integrating the Prophecy mocking library in PHPUnit test cases", + "keywords": ["Phpunit", "Prophecy"], + "homepage": "http://phpspec.net", + "type": "library", + "license": "MIT", + "authors": [ + { + "name": "Christophe Coevoet", + "email": "stof@notk.org" + } + ], + "minimum-stability": "dev", + "prefer-stable": true, + "require": { + "php": "^7.3 || ^8", + "phpspec/prophecy": "^1.18", + "phpunit/phpunit":"^9.1 || ^10.1" + }, + "autoload": { + "psr-4": { + "Prophecy\\PhpUnit\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "Prophecy\\PhpUnit\\Tests\\Fixtures\\": "fixtures", + "Prophecy\\PhpUnit\\Tests\\": "tests" + } + }, + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + } +} |