From 63b7a16b4cbb08a756df7f9d52b37ef528515da0 Mon Sep 17 00:00:00 2001 From: Jim Winstead Date: Sat, 20 Jul 2024 13:36:29 -0700 Subject: [PATCH] Change goo.gl URL to php.net Google will be retiring goo.gl redirects, so go ahead and point directly at php.net. --- src/Utility/Httpie.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Utility/Httpie.php b/src/Utility/Httpie.php index 6f002c393..30a4b52a4 100644 --- a/src/Utility/Httpie.php +++ b/src/Utility/Httpie.php @@ -42,7 +42,7 @@ public function __construct() if (!extension_loaded('curl')) { throw new \Exception( "Please, install curl extension.\n" . - "https://goo.gl/yTAeZh" + "https://php.net/curl.installation" ); } }