# NIH PHP Command Builder Simple command builder inspired by rust's std library. ```php stdin(Stdio::piped()) ->spawn(shell: false); $child->stdin?->write('Hello, this is pretty cool.'); $child->stdin?->close(); $output = $child->output(); var_dump($output) // object(Nih\CommandBuilder\Output)#4 (3) { // ["stdout"]=> // string(27) "Hello, this is pretty cool." // ["stderr"]=> // string(0) "" // ["code"]=> // int(0) // } ```