friendsofvictoire / listing-widget
Victoire DCMS Listing widget
Installs: 15 080
Dependents: 6
Suggesters: 0
Security: 0
Stars: 2
Watchers: 9
Forks: 5
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.5.9
- pagerfanta/pagerfanta: ^1.0@dev
- symfony/framework-bundle: ~2.8|~3.0
- victoire/victoire: ~3.0
README
What is the purpose of this bundle
This bundles gives you access to the List Widget.
Set Up Victoire
If you haven't already, you can follow the steps to set up Victoire here
Install the bundle
php composer.phar require friendsofvictoire/listing-widget
Reminder
Do not forget to add the bundle in your AppKernel !
<?php //... class AppKernel extends Kernel { public function registerBundles() { $bundles = array( ... new Victoire\Widget\ListingBundle\VictoireWidgetListingBundle(), ); return $bundles; } }