From cc4e4a068be2ff0bc4631eed561b131728b279ec Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Fri, 5 Jul 2019 23:34:23 +0200 Subject: [PATCH] Add descriptions to custom Composer scripts --- composer.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/composer.json b/composer.json index e828fd7c7..20da4e05c 100644 --- a/composer.json +++ b/composer.json @@ -95,5 +95,11 @@ "test:unit": "phpunit -c tests/phpunit.unit.xml", "test:integration": "phpunit -c tests/phpunit.integration.xml", "test:setup": "@php tests/integration/setup.php" + }, + "scripts-descriptions": { + "test": "Runs all tests.", + "test:unit": "Runs all unit tests.", + "test:integration": "Runs all integration tests.", + "test:setup": "Sets up a database for use with integration tests. Execute this only once." } }