Download the PHP package nijens/sse without Composer
On this page you can find all versions of the php package nijens/sse. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Package sse
Short Description A Server Sent Events server implementation in PHP.
License MIT
Informations about the package sse
SSE
A Server-Sent Events server implementation in PHP.
For more information about SSE, see the MDN documentation.
Installation
Open a command console, enter your project directory and execute:
Usage
The SSE library functions with two main components:
- An event publisher implementation (eg. the
DateTimeEventPublisher
): Providing the events to be sent - The
SseKernel
: Responsible for checking with the event publisher for new events and sending the events to the client (browser)
The following example shows how to initialize the SseKernel
with an event publisher:
Integrating the SseKernel inside a Symfony controller
When you're using the Symfony Framework to create your application, you're still able to use the SseKernel
implementation inside a controller.
The following example shows a crude implementation of the SseKernel
inside a controller:
Optionally, you could use Dependency Injection to change the kernel and event publisher to services.
Creating your own event publisher
This library provides the following event publishers:
DateTimeEventPublisher
: A working example, providing the current time as eventTransportEventPublisher
: A event publisher implementation for implementing a transport (eg. MySQL database implementation)
You're able to create your own event publisher implementation by implementing the EventPublisherInterface
or
ConnectedClientEventPublisherInterface
.
If you only want read the events from a database or other storage, it is recommended to create a TransportInterface
implementation for the TransportEventPublisher
.
Credits and acknowledgements
- Author: Niels Nijens
Also see the list of contributors who participated in this project.
License
The SSE package is licensed under the MIT License. Please see the LICENSE file for details.