amphp / process
A fiber-aware process manager based on Amp and Revolt.
Fund package maintenance!
amphp
Installs: 21 654 529
Dependents: 48
Suggesters: 1
Security: 0
Stars: 229
Watchers: 11
Forks: 32
Open Issues: 5
Requires
- php: >=8.1
- amphp/amp: ^3
- amphp/byte-stream: ^2
- amphp/sync: ^2
- revolt/event-loop: ^1 || ^0.2
Requires (Dev)
- amphp/php-cs-fixer-config: ^2
- amphp/phpunit-util: ^3
- phpunit/phpunit: ^9
- psalm/phar: ^5.4
- 2.x-dev
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
- v2.0.0-beta.7
- v2.0.0-beta.6
- v2.0.0-beta.5
- v2.0.0-beta.4
- v2.0.0-beta.3
- v2.0.0-beta.2
- v2.0.0-beta.1
- 1.x-dev
- v1.1.7
- v1.1.6
- v1.1.5
- v1.1.4
- v1.1.3
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- v0.3.3
- v0.3.2
- v0.3.1
- v0.3.0
- v0.2.1
- v0.2.0
- v0.1.x-dev
- v0.1.3
- v0.1.2
- v0.1.1
- v0.1.0
- dev-windows-hang
- dev-windows
- dev-crash-on-windows-with-parallel
- dev-windows-stdio
This package is auto-updated.
Last update: 2024-10-19 04:27:51 UTC
README
AMPHP is a collection of event-driven libraries for PHP designed with fibers and concurrency in mind.
amphp/process
provides an asynchronous process dispatcher that works on all major platforms (including Windows).
It makes running child processes simple.
As Windows pipes are file handles and do not allow non-blocking access, this package makes use of a process wrapper, that provides access to these pipes via sockets. On Unix-like systems it uses the standard pipes, as these can be accessed without blocking there. Concurrency is managed by the Revolt event loop.
Installation
This package can be installed as a Composer dependency.
composer require amphp/process
The package requires PHP 8.1 or later.
Usage
Processes are started with Process::start()
:
<?php require __DIR__ . "/vendor/autoload.php"; use Amp\ByteStream; use Amp\Process\Process; // "echo" is a shell internal command on Windows and doesn't work. $command = DIRECTORY_SEPARATOR === "\\" ? "cmd /c echo Hello World!" : "echo 'Hello, world!'"; $process = Process::start($command); Amp\async(fn () => Amp\ByteStream\pipe($process->getStdout(), ByteStream\getStdout())); Amp\async(fn () => Amp\ByteStream\pipe($process->getStderr(), ByteStream\getStderr())); $exitCode = $process->join(); echo "Process exited with {$exitCode}.\n";
Custom Working Directory
Processes are started with the working directory of the current process by default. The working directory can be customized to another directory if needed:
$process = Amp\Process\Process::start($command, workingDirectory: '/path/of/your/dreams');
Custom Environment Variables
Processes are started with the environment variables of the current process by default. The environment can be customized by passing an associative array mapping variables names to their values:
$process = Amp\Process\Process::start($command, environment: [ 'PATH' => '/usr/bin/local' ]);
Versioning
amphp/process
follows the semver semantic versioning specification like all other amphp
packages.
Security
If you discover any security related issues, please use the private security issue reporter instead of using the public issue tracker.
License
The MIT License (MIT). Please see LICENSE
for more information.