polishsymfonycommunity / blog-bundle
Blog bundle based on a WordPress database.
Installs: 13
Dependents: 0
Suggesters: 0
Security: 0
Stars: 31
Watchers: 4
Forks: 7
Open Issues: 3
Type:symfony-bundle
Requires
- php: >=5.3.2
- doctrine/orm: 2.1.*
- knplabs/knp-paginator-bundle: *
- sensio/framework-extra-bundle: 2.0.*@dev
- symfony/symfony: 2.0.*
Requires (Dev)
- behat/behat: >=2.4
- behat/common-contexts: *@dev
- behat/mink: >=1.4
- behat/mink-browserkit-driver: *
- behat/mink-extension: *
- behat/symfony2-extension: *
- benwaine/phabric: *@dev
This package is auto-updated.
Last update: 2022-02-01 12:20:35 UTC
README
Symfony2 blog bundle based on the WordPress database model.
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() ); }