1
0
mirror of https://github.com/danog/process.git synced 2024-11-26 12:14:43 +01:00
Go to file
2021-03-30 21:26:13 +02:00
.github/workflows Ignore PHP version on PHP 8 on Windows and macOS 2021-03-30 20:41:49 +02:00
bin/windows Update Windows binaries to v1.2.0 (#34) 2019-02-25 22:39:07 -06:00
examples Update examples 2018-10-15 09:55:15 -05:00
lib Fix code style 2021-03-30 18:47:01 +02:00
test Improve assertion 2021-03-30 21:26:13 +02:00
.gitattributes Add Makefile and update git files 2017-11-24 18:47:59 -06:00
.gitignore Switch to GitHub Actions 2021-03-30 18:42:38 +02:00
.php_cs Fix code style 2021-03-30 18:47:01 +02:00
appveyor.yml Update AppVeyor config to PHP 7.4 (#42) 2020-03-08 21:33:54 +01:00
composer.json Fix config override 2021-03-30 18:44:43 +02:00
LICENSE Switch to GitHub Actions 2021-03-30 18:42:38 +02:00
Makefile Add Makefile and update git files 2017-11-24 18:47:59 -06:00
phpunit.xml.dist Refactor for full Windows compatibility 2017-11-24 18:43:56 -06:00
README.md Switch to GitHub Actions 2021-03-30 18:42:38 +02:00

process

Code Coverage Release License

This package provides an asynchronous process dispatcher that works on all major platforms (including Windows).

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 Amp event loop.

Installation

This package can be installed as a Composer dependency.

composer require amphp/process

Requirements

  • PHP 7.0+

Versioning

amphp/process follows the semver semantic versioning specification like all other amphp packages.

Security

If you discover any security related issues, please email me@kelunik.com instead of using the issue tracker.

License

The MIT License (MIT). Please see LICENSE for more information.