friendsofvictoire / sharethis-widget
Victoire DCMS ShareThis widget
Installs: 13 016
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 9
Forks: 4
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.5.9
- symfony/framework-bundle: ~2.8|~3.0
- victoire/victoire: >=2.0.0|~3.0
This package is not auto-updated.
Last update: 2021-12-21 22:42:47 UTC
README
##What is the purpose of this bundle
This bundles gives you access to the ShareThis Widget which enables a social buttons bar to share any content over social platforms.
##Set Up Victoire
If you haven't already, you can follow the steps to set up Victoire here
##Install the bundle
Run the following composer command :
php composer.phar require friendsofvictoire/sharethis-widget
###Reminder
Do not forget to add the bundle in your AppKernel !
class AppKernel extends Kernel { public function registerBundles() { $bundles = array( ... new Victoire\Widget\ShareThisBundle\VictoireWidgetShareThisBundle(), ); return $bundles; } }