PHP 的 Shell 命令模块。
github.com/sp4ceb4r/shell-command
源代码
问题
安装数: 12,529
依赖者: 0
建议者: 0
安全性: 0
星标: 3
关注者: 2
分支: 4
开放问题: 2
Requires
Requires (Dev)
Suggests
None
Provides
Conflicts
Replaces
MIT faec6a0e9945ca0ec3e17a8a02b61f54fddd0ee7
processcommandshell
This package is auto-updated.
Last update: 2024-09-12 01:06:13 UTC
php proc_open 命令的简单封装。
简化在 PHP 脚本中运行和交互 shell 命令。
$process = Process::make(Command::make('sleep')->withArgs(5)) ->runAsync(); $process->wait(2);
composer require sp4ceb4r/shell-command
phpunit tests