Skip to content
This repository has been archived by the owner on Oct 2, 2018. It is now read-only.

Latest commit

 

History

History
executable file
·
36 lines (27 loc) · 756 Bytes

README.md

File metadata and controls

executable file
·
36 lines (27 loc) · 756 Bytes

PSSBlogBundle

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