Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 304 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 304 Bytes

WebServerRunner

This is a simple runner wrapper of the php built-in web server.

Usaage

$runner = new WebServerRunner('localhost', '3343', './');
$runner->setVerbose();
$runner->execute();
$info = $runner->info();
$pid = $runner->getPid();
$runner->stopOnShutdown();