From 38296c603b8b967e59a783c146ae61703a85663a Mon Sep 17 00:00:00 2001 From: func0der <529819+func0der@users.noreply.github.com> Date: Fri, 3 Jun 2022 05:03:44 +0200 Subject: [PATCH] Composer suggestions with extensions (#317) * Add suggestion for usage of Filter.ExtractStyleBlocks Resolves #316 * Add php extensions as suggestions Resolves #316 * Correct typo in composer property --- composer.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/composer.json b/composer.json index 5f62d889..7e1e6808 100644 --- a/composer.json +++ b/composer.json @@ -21,5 +21,11 @@ "exclude-from-classmap": [ "/library/HTMLPurifier/Language/" ] + }, + "suggest": { + "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.", + "ext-iconv": "Converts text to and from non-UTF-8 encodings", + "ext-bcmath": "Used for unit conversion and imagecrash protection", + "ext-tidy": "Used for pretty-printing HTML" } }