Skip to content

Releases: YGGverse/nex-php

1.1.2

08 Jul 02:03
Compare
Choose a tag to compare

Fixed

Full Changelog: 1.1.1...1.1.2

1.1.1

27 Apr 19:19
Compare
Choose a tag to compare

Correction release includes socket bind validation: 55b4c87

Full Changelog: 1.1.0...1.1.1

1.1.0

25 Apr 11:57
Compare
Choose a tag to compare

Implemented optional Server response returned by custom handler

$server->start(
    function (
        string $request,
        string $connect
    ): ?string
    {
        printf(
            'connection: %s request: %s',
            $connect,
            $request
        );

        return null; // null|string response
    }
);

Full Changelog: 1.0.0...1.1.0

1.0.0

23 Apr 22:41
Compare
Choose a tag to compare

Initial stable release!

Includes:

Full Changelog: https://github.com/YGGverse/nex-php/commits/1.0.0