kunstmaan/voting-bundle
A lot of sites enable users to vote or participate in actions where Facebook Likes are counted and rewarded. The KunstmaanVotingBundle was created to allow a faster setup of that kind of actions and will provide a backlog of votes your users casted. That way you can look for irregularities and autom
Maintainers
Package info
github.com/Kunstmaan/KunstmaanVotingBundle
Type:symfony-bundle
pkg:composer/kunstmaan/voting-bundle
Requires
- php: ^8.1
- doctrine/dbal: ^3.8
- doctrine/doctrine-bundle: ^2.12
- doctrine/orm: ^2.13
- symfony/config: ^6.4|^7.2
- symfony/dependency-injection: ^6.4|^7.2
- symfony/event-dispatcher: ^6.4|^7.2
- symfony/framework-bundle: ^6.4|^7.2
- symfony/http-foundation: ^6.4|^7.2
- symfony/http-kernel: ^6.4|^7.2
- symfony/routing: ^6.4|^7.2
Requires (Dev)
Suggests
None
Provides
None
Conflicts
None
Replaces
None
MIT f8265f167093ab100bf7c3d75ddf1da977a4a3f3
- Kunstmaan CMS Team <cms.woop@kunstmaan.be>
This package is auto-updated.
Last update: 2026-06-15 20:16:38 UTC
README
A lot of sites enable users to vote or participate in actions where Facebook Likes are counted and rewarded. The KunstmaanVotingBundle was created to allow a faster setup of that kind of actions and will provide a backlog of votes your users casted. That way you can look for irregularities and automatically stop campaigns when their deadline has expired. It will provice support for votes on your site only but also for external social networks as Facebook so you can worry about you ideas and not how to implement it.
Installation requirements
You should be able to get Symfony 3 up and running before you can install the KunstmaanVotingBundle.
Installation instructions
Assuming you have installed composer.phar or composer binary:
$ composer require kunstmaan/voting-bundle
Add the KunstmaanVotingBundle to your AppKernel.php file:
new Kunstmaan\VotingBundle\KunstmaanVotingBundle(),
Add the KunstmaanVotingBundle to your routing.yml. Take your own routing into account, it's possible you will need to add the following code prior to your own routing configurations
KunstmaanVotingBundle:
resource: "@KunstmaanVotingBundle/Resources/config/routing.yml"
prefix: /
Overwrite the KunstmaanVotingBundle config to your needs in config.yml :
kunstmaan_voting: actions: up_vote: default_value: 1 down_vote: default_value: -1 facebook_like: default_value: 1 facebook_send: default_value: 1 linkedin_share: default_value: 1
Use
Symfony 2.2
If you want to use this bundle for a Symfony 2.2 release, use the 2.2 branch.
