- KnpTimeBundle
- WysiBB fork https://github.com/jekill/WysiBB
- WhiteOctoberPagerfantaBundle
- KnockoutJS
Форум жестко не привязан к имеющейся системе авторизации, имеется зависимость только от Symfony\Component\Security\Core\User\UserInterface, так что вы можете использовать любую реализацию, FOSUserBundle - поддерживается.
Форум имеет три основных сущности:
- Категория
- Топик
- Пост
Add CFTheBundle in your composer.json:
{
"require": {
"codingfarm/the-forum-bundle": "dev-master"
}
}
Now tell composer to download the bundle by running the command:
$ php composer.phar update codingfarm/the-forum-bundle
Composer will install the bundle to your project's vendor/codingfarm/the-forum-bundle/
directory.
Enable the bundle in the kernel:
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new CF\TheForumBundle\CFTheForumBundle(),
);
}