PHP code example of tiitoo / kijho-chat
1. Go to this page and download the library: Download tiitoo/kijho-chat library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
tiitoo / kijho-chat example snippets
// app/AppKernel.php
// ...
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
// ...
new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
new Symfony\Bundle\AsseticBundle\AsseticBundle(),
new Gos\Bundle\WebSocketBundle\GosWebSocketBundle(), //bundle websockets for chat
new Gos\Bundle\PubSubRouterBundle\GosPubSubRouterBundle(), //bundle websockets for chat
new Kijho\ChatBundle\ChatBundle(),
);
// ...
}
// ...
}