avro / blog-bundle
Another very simple Symfony2 Blog bundle
Installs: 69
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 1
Language:JavaScript
Type:symfony-bundle
Requires
- php: >=5.3.2
This package is not auto-updated.
Last update: 2024-11-17 04:35:08 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"