Skip to content

sp4ceb4r/shell-command

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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