forked from FriendsOfSymfony/FOSCommentBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.4 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
{
"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": "Thibault Duplessis",
"email": "[email protected]"
},
{
"name": "Tim Nagel",
"email": "[email protected]"
},
{
"name": "FriendsOfSymfony Community",
"homepage": "https://github.com/friendsofsymfony/FOSCommentBundle/contributors"
}
],
"require": {
"php": ">=5.3.2",
"symfony/symfony": "2.1.*",
"friendsofsymfony/rest-bundle": "*"
},
"suggest": {
"friendsofsymfony/user-bundle": "Allows for user integration.",
"ornicar/akismet-bundle": "Integrate Akismet for spamdetection."
},
"require-dev": {
"doctrine/orm": "2.2.*",
"doctrine/doctrine-bundle": "*",
"symfony/assetic-bundle": "*",
"friendsofsymfony/user-bundle": "*",
"ornicar/akismet-bundle": "*",
"behat/behat-bundle": "*",
"behat/mink-bundle": "*",
"behat/sahi-client": "*"
},
"autoload": {
"psr-0": { "FOS\\CommentBundle": "" }
},
"target-dir": "FOS/CommentBundle"
}