summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2023-12-11 08:22:51 +0100
committerRemi Collet <remi@php.net>2023-12-11 08:22:51 +0100
commitadac82c70ff614e557b799c34c917ab04ce16b98 (patch)
tree57dd4e789c0767af0b14ee4f80556934479eca09 /composer.json
parentfd55ed966d69e216ec4860d9f95f4581d1218a12 (diff)
update to 2.1.0
raise dependency on phpspec/prophecy 1.18 allow phpunit9 or phpunit10
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json37
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"
+ }
+ }
+}