From 7db56f83cfb139ce719fc51b3540fa6ba1e2082c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 31 Mar 2021 16:00:00 +0200 Subject: update to 1.4.1 switch to phpunit9 --- composer.json | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index ec41a61..db44d9e 100644 --- a/composer.json +++ b/composer.json @@ -11,10 +11,10 @@ } ], "require": { - "php": ">=5.5.0" + "php": ">=5.5" }, "require-dev": { - "phpunit/phpunit": "^4.0" + "symfony/phpunit-bridge": "^4.4 || ^5.1" }, "autoload": { "psr-4": { @@ -22,9 +22,14 @@ }, "files": ["src/functions_include.php"] }, + "autoload-dev": { + "psr-4": { + "GuzzleHttp\\Promise\\Tests\\": "tests/" + } + }, "scripts": { - "test": "vendor/bin/phpunit", - "test-ci": "vendor/bin/phpunit --coverage-text" + "test": "vendor/bin/simple-phpunit", + "test-ci": "vendor/bin/simple-phpunit --coverage-text" }, "extra": { "branch-alias": { -- cgit