-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
48 lines (48 loc) · 1.98 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "kunstmaan/voting-bundle",
"type": "symfony-bundle",
"description": "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 campains 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.",
"keywords": [ "kunstmaan", "cms", "social", "voting"],
"homepage": "https://github.com/Kunstmaan/KunstmaanVotingBundle",
"license": "MIT",
"authors": [
{
"name": "Kunstmaan Team",
"homepage": "http://www.kunstmaan.be/",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": "^7.2|^8.0",
"doctrine/orm": "^2.5",
"doctrine/dbal": "^2.5",
"doctrine/doctrine-bundle": "^1.12.3|^2.0.3",
"doctrine/doctrine-cache-bundle": "^1.2",
"sensio/framework-extra-bundle": "^5.0|^6.0",
"symfony/config": "^3.4|^4.4",
"symfony/dependency-injection": "^3.4|^4.4",
"symfony/event-dispatcher": "^3.4|^4.4",
"symfony/framework-bundle": "^3.4.31|^4.4",
"symfony/http-foundation": "^3.4.35|^4.4",
"symfony/http-kernel": "^3.4|^4.4",
"symfony/routing": "^3.4|^4.4"
},
"require-dev": {
"matthiasnoback/symfony-config-test": "^4.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"symfony/phpunit-bridge": "^5.1",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": { "Kunstmaan\\VotingBundle\\": "" }
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "5.10-dev"
}
}
}