sp4ceb4r / shell-command

Wrapper for php proc_open

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status License

shell-command

A simple wrapper of the php proc_open command.

Simplifies running and interacting with shell commands within a php script.

Getting Started

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

Installing

composer require sp4ceb4r/shell-command

Running the tests

phpunit tests

About

Wrapper for php proc_open

License:MIT License


Languages

Language:PHP 100.0%