From f070ecb4b3048c96f449efd5dec6a3f690013547 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Fri, 3 Mar 2023 16:20:01 +0100 Subject: [PATCH] Correct composer suggestion description The value in suggestions is not for the version (like in required) but for a descriptive test that can help developers in deciding if they should install the suggested package. --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index b4755b1b564..4cb596ddb48 100644 --- a/composer.json +++ b/composer.json @@ -54,9 +54,9 @@ "sort-packages": true }, "suggest": { - "phpunit/php-invoker": "^2.0.0", - "ext-soap": "*", - "ext-xdebug": "*" + "phpunit/php-invoker": "To allow enforcing time limits", + "ext-soap": "To be able to generate mocks based on WSDL files", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" }, "bin": [ "phpunit"