PHPackages                             bordeux/websocket-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [HTTP &amp; Networking](/categories/http)
4. /
5. bordeux/websocket-bundle

AbandonedArchivedSymfony-bundle[HTTP &amp; Networking](/categories/http)

bordeux/websocket-bundle
========================

Symfony 3 Websocket bundle

v0.2(10y ago)112673[1 issues](https://github.com/bordeux/websocket-bundle/issues)Apache-2.0PHP

Since Feb 27Pushed 8y ago3 watchersCompare

[ Source](https://github.com/bordeux/websocket-bundle)[ Packagist](https://packagist.org/packages/bordeux/websocket-bundle)[ Docs](http://bednaczyk.me/websocket-bundle)[ RSS](/packages/bordeux-websocket-bundle/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (2)Dependencies (1)Versions (3)Used By (0)

Symfony Websocket Bundle
========================

[](#symfony-websocket-bundle)

Simple and great websocket manager.

Installation
------------

[](#installation)

```
composer require bordeux/websocket-bundle

```

Run
---

[](#run)

```
php app/console bordeux:websocket:bundle

```

Edit Appkernel
--------------

[](#edit-appkernel)

```
    public function registerBundles()
    {
        $bundles = array(
			...
            new Bordeux\WebsocketBundle\BordeuxWebsocketBundle(),
			....
        );

        return $bundles;
    }
```

Create Websocket Controller
---------------------------

[](#create-websocket-controller)

```
