From ac7e8d43695ccbf40d9214ceacff64161dde3c38 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 3 Dec 2021 07:48:14 +0100 Subject: update to 2.9.0 keep compatibility using laminas-zendframework-bridge as this is only used using compat autolader raise dependency on PHP 7.4 raise dependency on laminas-escaper 2.9 raise dependency on laminas-stdlib 3.6 --- php-laminas-tag-escaper.patch | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 php-laminas-tag-escaper.patch (limited to 'php-laminas-tag-escaper.patch') diff --git a/php-laminas-tag-escaper.patch b/php-laminas-tag-escaper.patch deleted file mode 100644 index fed770c..0000000 --- a/php-laminas-tag-escaper.patch +++ /dev/null @@ -1,22 +0,0 @@ -From d864af14cf8645f5ab09df9cd406b4eafd113a57 Mon Sep 17 00:00:00 2001 -From: Remi Collet -Date: Tue, 3 Aug 2021 10:36:00 +0200 -Subject: [PATCH] fix for laminas/escaper 2.8 - ---- - src/Cloud/Decorator/HtmlTag.php | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/Cloud/Decorator/HtmlTag.php b/src/Cloud/Decorator/HtmlTag.php -index 6e50578..89ab75b 100644 ---- a/src/Cloud/Decorator/HtmlTag.php -+++ b/src/Cloud/Decorator/HtmlTag.php -@@ -241,7 +241,7 @@ public function render($tags) - - $tagHTML = sprintf( - '%s', -- $escaper->escapeHtml($tag->getParam('url')), -+ $escaper->escapeHtml($tag->getParam('url') ?? ''), - $attribute, - $escaper->escapeHtml($tag->getTitle()) - ); -- cgit