Symfony2 blog bundle based on the WordPress database model.
{
"require": {
"polishsymfonycommunity/blog-bundle": "*"
}
}
Enable the PSSBlogBundle and the KnpPaginatorBundle bundles in the kernel (app/AppKernel.php
):
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Knp\Bundle\PaginatorBundle\KnpPaginatorBundle(),
new PSS\Bundle\BlogBundle\PSSBlogBundle()
);
}