sp4ceb4r/shell-command

PHP 的 Shell 命令模块。

0.2.3 2019-06-11 14:06 UTC

This package is auto-updated.

Last update: 2024-09-12 01:06:13 UTC


README

Build Status License

shell-command

php proc_open 命令的简单封装。

简化在 PHP 脚本中运行和交互 shell 命令。

入门

$process = Process::make(Command::make('sleep')->withArgs(5))
    ->runAsync();
$process->wait(2);

安装

composer require sp4ceb4r/shell-command

运行测试

phpunit tests