This repository has been archived by the owner on May 3, 2024. It is now read-only.
1.0.0
Initial stable release!
includes Server
class to build interactive applications
Example
$server = new \Yggverse\Nps\Server;
$server->start(
function (
string $content,
string $request,
string $connect
) {
printf(
'connection: %s request: %s',
$connect,
$request
);
var_dump(
$content
);
}
);
Full Changelog: https://github.com/YGGverse/nps-php/commits/1.0.0