forked from FriendsOfSymfony/FOSCommentBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (59 loc) · 1.89 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "friendsofsymfony/comment-bundle",
"type": "symfony-bundle",
"description": "This Bundle provides threaded comment functionality for Symfony2 applications",
"keywords": ["comment", "threads", "forum"],
"homepage": "http://friendsofsymfony.github.com",
"license": "MIT",
"authors": [
{
"name": "Tim Nagel",
"email": "[email protected]"
},
{
"name": "Alexander Mols",
"email": "[email protected]"
},
{
"name": "FriendsOfSymfony Community",
"homepage": "https://github.com/friendsofsymfony/FOSCommentBundle/contributors"
}
],
"support": {
"irc": "irc://irc.freenode.org/symfony-dev",
"issues": "https://github.com/FriendsOfSymfony/FOSCommentBundle/issues"
},
"require": {
"php": ">=5.3.2",
"friendsofsymfony/rest-bundle": "~1.0",
"jms/serializer-bundle": "~0.11",
"symfony/framework-bundle": "~2.1",
"symfony/security-bundle": "~2.1",
"symfony/yaml": "~2.1",
"symfony/form": "~2.1",
"symfony/validator": "~2.1",
"symfony/twig-bundle": "~2.1"
},
"suggest": {
"friendsofsymfony/user-bundle": "Allows for user integration.",
"ornicar/akismet-bundle": "Integrate Akismet for spamdetection."
},
"require-dev": {
"symfony/assetic-bundle": "~2.1",
"symfony/browser-kit": "~2.1",
"symfony/css-selector": "~2.1",
"doctrine/orm": "~2.3",
"doctrine/doctrine-bundle": "~1.1",
"friendsofsymfony/user-bundle": "~1.1",
"ornicar/akismet-bundle": "dev-master"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-0": { "FOS\\CommentBundle": "" }
},
"target-dir": "FOS/CommentBundle"
}