From 384c9c4ac58dda8194b97b95714fa5ea769b9664 Mon Sep 17 00:00:00 2001 From: Matthias Pigulla Date: Thu, 31 Oct 2019 16:45:07 +0100 Subject: [PATCH] Use webfactory/phumbor instead of 99designs/phumbor The `99designs/phumbor` library has been unmaintained for a long time. In particular, there is a long-standing issue regarding application of `rawurlencode()` to image URLs (https://github.com/99designs/phumbor/issues/20) which has not been addressed. Also the (direct question whether the code is still maintained or not)[https://github.com/99designs/phumbor/issues/30] has not been answered for almost a year. In order to address the URL encoding issue, I forked the original repo: * https://github.com/webfactory/phumbor/ * https://packagist.org/packages/webfactory/phumbor With this change I would like to suggest switching this bundle over to the forked library. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 5a1475b..336e360 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "homepage": "https://github.com/jbouzekri/PhumborBundle", "license": "MIT", "require": { - "99designs/phumbor": "^1.1" + "webfactory/phumbor": "^1.1" }, "require-dev": { "symfony/config": "~2.4",