# NIH PHP Command Builder Simple command builder inspired by rust's std library. ```php stdin(Stdio::piped()) ->stdout(Stdio::piped()) ->spawn(); $child->stdin?->write('Hello, this is pretty cool.'); $output = $child->output(); echo $output->stdout; // Hello, this is pretty cool. ```