Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

1.0.0

Compare
Choose a tag to compare
@d47081 d47081 released this 24 Apr 20:04
· 15 commits to main since this release

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