=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== php-react-child-process-0.6.1/CHANGELOG.md-22- php-react-child-process-0.6.1/CHANGELOG.md:23: > BC note: The optional `$options` parameter in the `Process` constructor php-react-child-process-0.6.1/CHANGELOG.md:24: has been removed and a new `$fds` parameter has been added instead. The php-react-child-process-0.6.1/CHANGELOG.md:25: previous `$options` parameter was Windows-only, available options were not php-react-child-process-0.6.1/CHANGELOG.md-26- documented or referenced anywhere else in this library, so its actual ############################################## php-react-child-process-0.6.1/README.md-63- php-react-child-process-0.6.1/README.md:64:* `$stdin` or `$pipes[0]` is a `WritableStreamInterface` php-react-child-process-0.6.1/README.md:65:* `$stdout` or `$pipes[1]` is a `ReadableStreamInterface` php-react-child-process-0.6.1/README.md:66:* `$stderr` or `$pipes[2]` is a `ReadableStreamInterface` php-react-child-process-0.6.1/README.md-67- ############################################## php-react-child-process-0.6.1/README.md-70-different values. In particular, note that [Windows support](#windows-compatibility) php-react-child-process-0.6.1/README.md:71:is limited in that it doesn't support non-blocking STDIO pipes. The `$pipes` php-react-child-process-0.6.1/README.md-72-array will always contain references to all pipes as configured and the standard ############################################## php-react-child-process-0.6.1/README.md-257- php-react-child-process-0.6.1/README.md:258:Note that `$code` is `null` if the process has terminated, but the exit php-react-child-process-0.6.1/README.md-259-code could not be determined (for example php-react-child-process-0.6.1/README.md-260-[sigchild compatibility](#sigchild-compatibility) was disabled). php-react-child-process-0.6.1/README.md:261:Similarly, `$term` is `null` unless the process has terminated in response to php-react-child-process-0.6.1/README.md-262-an uncaught signal sent to it. ############################################## php-react-child-process-0.6.1/README.md-274- php-react-child-process-0.6.1/README.md:275:The `terminate(?int $signal = null): bool` method can be used to send the php-react-child-process-0.6.1/README.md-276-process a signal (SIGTERM by default). ############################################## php-react-child-process-0.6.1/README.md-376- php-react-child-process-0.6.1/README.md:377:Once the process is started, the `$pipes` array will always contain references to php-react-child-process-0.6.1/README.md-378-all pipes as configured and the standard I/O references will always be set to ############################################## php-react-child-process-0.6.1/README.md-402- php-react-child-process-0.6.1/README.md:403:The static `setSigchildEnabled(bool $sigchild): void` method can be used to php-react-child-process-0.6.1/README.md-404-explicitly enable or disable this behavior like this: ############################################## php-react-child-process-0.6.1/src/Process.php-38- * php-react-child-process-0.6.1/src/Process.php:39: * Note that `$code` is `null` if the process has terminated, but the exit php-react-child-process-0.6.1/src/Process.php-40- * code could not be determined (for example php-react-child-process-0.6.1/src/Process.php-41- * [sigchild compatibility](#sigchild-compatibility) was disabled). php-react-child-process-0.6.1/src/Process.php:42: * Similarly, `$term` is `null` unless the process has terminated in response to php-react-child-process-0.6.1/src/Process.php-43- * an uncaught signal sent to it.