Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/aladser/phplinwebsocket

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

laravel linux ratchet websocket

Last synced: 9 days 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/",
}
},
```