This package is abandoned and no longer maintained. No replacement package was suggested.

Blog bundle based on a WordPress database.

dev-master 2012-08-06 16:33 UTC

This package is auto-updated.

Last update: 2022-02-01 12:20:35 UTC


README

Symfony2 blog bundle based on the WordPress database model.

Build Status

Installation

Add PSSBlogBundle to your composer.json

{
    "require": {
        "polishsymfonycommunity/blog-bundle": "*"
    }
}

Enable the 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()
    );
}