From 6f1d9e59b57b768900aa51fe051b4a581b1fe6d2 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 10 Feb 2020 09:40:06 +0100 Subject: update to 2.2.1 allow phpunit9 and phpunit/php-text-template v2 --- composer.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 5500e4e..89a2e59 100644 --- a/composer.json +++ b/composer.json @@ -14,25 +14,26 @@ } ], "autoload": { + "files": ["autoload.php"], "psr-4": { "phpmock\\": ["classes/", "tests/"] } }, "autoload-dev": { - "files": ["autoload.php"] + "files": ["tests/autoload.php"] }, "require": { "php": "^5.6 || ^7.0", - "phpunit/php-text-template": "^1" + "phpunit/php-text-template": "^1 || ^2" }, "require-dev": { - "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.0" + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.0 || ^9.0" }, "replace": { "malkusch/php-mock": "*" }, "suggest": { - "php-mock/php-mock-phpunit": "Allows integration into PHPUnit testcase with the trait PHPMock." + "php-mock/php-mock-phpunit": "Allows integration into PHPUnit testcase with the trait PHPMock." }, "archive": { "exclude": ["/tests"] -- cgit