avro / blog-bundle
Another very simple Symfony2 Blog bundle
Package info
github.com/jdewit/AvroBlogBundle
Language:JavaScript
Type:symfony-bundle
pkg:composer/avro/blog-bundle
v0.2.1
2013-01-05 16:56 UTC
Requires
- php: >=5.3.2
This package is not auto-updated.
Last update: 2026-02-22 11:09:50 UTC
README
Another Symfony2 blog bundle.
It's simple. And I like it.
Status
This bundle is under development and may break.
Storage Layers
- Doctrine Mongodb
Installation
This bundle is listed on packagist.
Simply add it to your apps composer.json file
"avro/blog-bundle": "*"
Enable the bundle in the kernel:
// app/AppKernel.php new Avro\BlogBundle\AvroBlogBundle(),
Configuration
Add this required config to your app/config/config.yml file
avro_blog: db_driver: mongodb # supports mongodb list_count: 10 # The number of posts to show on the blog roll
Add routes to your app/config/routing.yml file
AvroBlogBundle: resource: "@AvroBlogBundle/Resources/config/routing/routing.yml"