Hello, I never write git issues so forgive me if it's not well structured.
I have a WSL set up in my windows and there are multiple project inside. Most need PHP 7.4 and that's how default php is configured. There is one project where I need to run php8.1. In that project there is no way to set the alternative binary path for psalm. I tried introducing the following changes to workspace.code-workspace:
{
"settings": {
"php.validate.executablePath": "/usr/bin/php8.1",
"psalm.phpExecutablePath": "/usr/bin/php8.1"
}
}
the first path solved the issue for default VS code validation, the second path was added automatically by from VS code Psalm extension GUI (see the screenshot).

This should defitelly solve the problem but it didn't. Both VS code extension and composer extension are up to date.