An open API service indexing awesome lists of open source software.

https://github.com/aladser/phplinwebsocket

PHP вебсокет для Linux
https://github.com/aladser/phplinwebsocket

laravel linux ratchet websocket

Last synced: 3 months ago
JSON representation

PHP вебсокет для Linux

Awesome Lists containing this project

README

          

# PHP вебсокет для Linux

## Настройка запуска в Laravel

+ *App\Http\Kernel.php:*

```
protected $middleware = [
..,
\App\Http\Middleware\IsActiveWebsocket::class,
];
```
+ *composer.json*

```
"require": {
"cboden/ratchet": "^0.4.4",
"ratchet/pawl": "^0.4.1"
},

"autoload": {
"psr-4": {
"Aladser\\": "aladser/",
}
},
```