asyncphp / process
Simple abstraction for starting and stopping processes
Requires
- php: ^5.4|^7.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.0
- phpunit/phpunit: ^4.8
README
Simple abstraction for starting and stopping processes.
Installation
composer require asyncphp/process
Usage
use AsyncPHP\Process\PosixHandler; $loop->start($id = "server", $command = "start-server.sh", $background = true); sleep(60); $loop->stop($id);
Compatibility
This library uses exec
and ps
to start and find processes. It will not work on systems where exec
has been disabled, or where ps -e/E
does not return the environment variables of a process. I've tested on macOS Sierra and Ubuntu Trusty 14.04
.
Versioning
This library follows Semver. According to Semver, you will be able to upgrade to any minor or patch version of this library without any breaking changes to the public API. Semver also requires that we clearly define the public API for this library.
All methods, with public
visibility, are part of the public API. All other methods are not part of the public API. Where possible, we'll try to keep protected
methods backwards-compatible in minor/patch versions, but if you're overriding methods then please test your work before upgrading.