We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"ext-posix": "*",
composer.json
src/Console/PurgeCommand.php
if (function_exists('posix_kill')) { posix_kill($processId, SIGTERM); } elseif (function_exists('exec') && strstr(PHP_OS, 'WIN')) { exec("taskkill /F /PID $processId") ? TRUE : FALSE; }
andsrc/Console/ContinueCommand.php src/Console/PauseCommand.php src/Console/TerminateCommand.php
src/Console/ContinueCommand.php src/Console/PauseCommand.php src/Console/TerminateCommand.php
The text was updated successfully, but these errors were encountered:
Remove "ext-posix": "*",from composer.json
This would miss then the proper requirements (at least for the system supporting it).
What is the proper composer declaration so this works for both Unix/Windows environments?
Sorry, something went wrong.
Closing this in favor of #170
No branches or pull requests
"ext-posix": "*",
fromcomposer.json
src/Console/PurgeCommand.php
file toand
src/Console/ContinueCommand.php src/Console/PauseCommand.php src/Console/TerminateCommand.php
The text was updated successfully, but these errors were encountered: