cravler/chat-bundle

Installs: 29

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 1

Open Issues: 0

Language:CSS

Type:symfony-bundle

dev-master 2014-04-22 11:54 UTC

This package is auto-updated.

Last update: 2024-04-06 08:40:08 UTC


README

Installation

Step 1: update your vendors by running

$ php composer.phar require cravler/chat-bundle:@dev

Step2: Enable the bundle

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...

        new Cravler\ChatBundle\CravlerChatBundle(),
    );
}

Step3: Routing

// app/config/routing.yml

cravler_chat:
    resource: "@CravlerChatBundle/Resources/config/routing.xml"
    prefix:   /chat

License

This bundle is under the MIT license. See the complete license in the bundle:

LICENSE