WIP: Try and fix installing on d9
authorSeamus Lee <seamuslee001@gmail.com>
Sat, 30 Jul 2022 22:56:22 +0000 (22:56 +0000)
committerSeamus Lee <seamuslee001@gmail.com>
Sat, 30 Jul 2022 22:57:55 +0000 (22:57 +0000)
guzzle_php81_shim.php

index 1c2eae37d3621e430bc05f3475dde4657ebe0821..5ae49d744467b57c858492663aee3ce143cd1e4e 100644 (file)
@@ -2,7 +2,15 @@
 
 namespace GuzzleHttp;
 
-if (!function_exists('\GuzzleHttp\http_build_query')) {
+try {
+  \Composer\InstalledVersions::getVersion('drupal/core');
+  $drupalCoreInstalled = TRUE;
+}
+catch (\OutOfBoundsException $e) {
+  $drupalCoreInstalled = FALSE;
+}
+
+if (!$drupalCoreInstalled) {
 
   /**
    * Generates URL-encoded query string.