Currently "guzzlehttp/psr7" is locked to the ^1.4 version range in composer.json.
This is blocking us from upgrading our stack, because several other dependencies (for example codeception/module-rest) now require guzzlehttp/psr7 versions 2.x and up.
Would it be possible to add support for the 2.x range by changing "guzzlehttp/psr7": "^1.4" to "guzzlehttp/psr7": "^1.4 || ^2.0"?
The only change needed is updating this line to:
$queryParams = \GuzzleHttp\Psr7\Query::parse($request->getUri()->getQuery());