From adac82c70ff614e557b799c34c917ab04ce16b98 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 11 Dec 2023 08:22:51 +0100 Subject: update to 2.1.0 raise dependency on phpspec/prophecy 1.18 allow phpunit9 or phpunit10 --- composer.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 composer.json (limited to 'composer.json') 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" + } + } +} -- cgit