diff --git a/lib/ApiClient.php b/lib/ApiClient.php index 641bfb84..e0a9deed 100755 --- a/lib/ApiClient.php +++ b/lib/ApiClient.php @@ -125,6 +125,11 @@ public function getClientId() $versionInfo = ""; $packages = json_decode(file_get_contents(__DIR__ . "/../../../../vendor/composer/installed.json"), true); + // Composer V2 has "packages" key at the top level with the packages. + if (array_key_exists('packages', $packages)) { + $packages = $packages['packages']; + } + foreach ($packages as $package) { if (isset($package['name']) && strcmp($package['name'], "cybersource/rest-client-php") == 0) {