PHP8.3 migrated some execution commands from fork+exec to posix_spawn, this might be another side-effect?
either way, seems our alternatives are to migrate to type (...) or bash -c 'command -v (...)' or implement our own getenv("PATH")-scanner (or just find one in composer) 🤔
this breaks chrome/chromium path autodetect in BrowserFactory
testing with php8.3 on ubuntu24.04-beta,
command
is not available in shell_exec:PHP8.3 migrated some execution commands from fork+exec to posix_spawn, this might be another side-effect?
either way, seems our alternatives are to migrate to
type (...)
orbash -c 'command -v (...)'
or implement our owngetenv("PATH")
-scanner (or just find one in composer) 🤔this breaks chrome/chromium path autodetect in BrowserFactory