From 91a727f555fb6a5a4e114b161e53facc27518b88 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Fri, 30 Oct 2020 01:53:52 +0100 Subject: [PATCH] Composer: add description When running `composer validate`, a warning was shown: ``` ./composer.json is valid for simple usage with composer but has strict errors that make it unable to be published as a package: See https://getcomposer.org/doc/04-schema.md for details on the schema description : The property description is required ``` Adding a description fixes this. --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index 94aba0f..2b22605 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,6 @@ { "name": "php-parallel-lint/php-console-color", + "description": "Simple library for creating colored console ouput.", "license": "BSD-2-Clause", "authors": [ {