Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
synergixe authored May 14, 2018
1 parent ae051b9 commit b76aa4c
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PHPBeamzer

This is a library that adds cross-browser support for real-time feeds and notifications to PHP web applications in an easy way (using Server-Sent Events (SSE) only). It currently supports **Laravel** version 5.4 and 5.5 only (for now).
This is a library that adds cross-browser support for real-time feeds and notifications to PHP web applications in an easy way (using Server-Sent Events (SSE) only). It currently supports **Laravel** version 5.4, 5.5 and 5.6 only.

## How to Use

Expand All @@ -27,6 +27,14 @@ This is a library that adds cross-browser support for real-time feeds and notifi

```

### Create the event listener to be used with the nofication custom event provided by the package

```bash

$ php artisan make:listener NotificableEventListener

```

### Then create your Laravel Controllers

```bash
Expand Down Expand Up @@ -218,7 +226,7 @@ This is a library that adds cross-browser support for real-time feeds and notifi
$event = new NotificableEvent(
$user,
$user->tasks()->where(
'status',
'status', '=',
$request->input('status')
)->get()
);
Expand Down Expand Up @@ -369,11 +377,11 @@ MIT

It isn't absolutely necessary but you can use this library with its front end component library called [beamzer-client](https://github.com/isocroft/beamzer-client/). This front end library support the follwoing browsers:

- IE 8.0+
- IE 9.0+
- FF 4.0+
- Opera 10.5+
- Chrome 3.0+
- Safari 5.0+
- Chrome 4.0+
- Safari 7.0+

## Contributing

Expand Down

0 comments on commit b76aa4c

Please sign in to comment.