You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: