[05:35:41] Does anyone know what is the best method to purge the sites table? [18:16:00] Hi folks, I'll admit I'm rusty at PHP & might have missed some context, but please be kind. I'm working on a MediaWiki deployment which relies on some extensions (AWS & MW-OAuth2Client) which in turn require using Composer to install dependencies. We're using MW 1.39 LTS. I'm specifically having an issue where the extensions are resolving to "psr/http-client" 2.0.0, where MediaWiki 1.39 LTS depends on 1.0.0 (the difference is they added type... [18:16:06] ... annotations since 1.0.0). The dependency on "psr/http-client" is transitive and there are no releases of the extensions which pin to more restrictive versions. I have tried using MediaWiki's "merge" plugin to resolve them all in one go but this broke MediaWiki's bundled dependencies completely. I am wondering what you would suggest for resolving this issue. Thanks! [21:07:55] I have managed to mitigate the issue by pinning the dependency versions with "composer require --no-update "aws/aws-sdk-php:3.269.1"" & "composer require --no-update "guzzlehttp/guzzle:7.4.5" "guzzlehttp/psr7:2.4.5""