forked from FriendsOfSymfony/FOSCommentBundle
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 2.58 KB
/
composer.json
File metadata and controls
81 lines (81 loc) · 2.58 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "boostworld/comment-bundle",
"type": "symfony-bundle",
"description": "This Bundle provides threaded comment functionality for Symfony applications - Fork for PHP8",
"keywords": ["comment", "threads", "forum"],
"homepage": "http://friendsofsymfony.github.com",
"license": "MIT",
"authors": [
{
"name": "Tim Nagel",
"email": "tim@nagel.com.au"
},
{
"name": "Alexander Mols",
"email": "iam.asm89@gmail.com"
},
{
"name": "FriendsOfSymfony Community",
"homepage": "https://github.com/friendsofsymfony/FOSCommentBundle/contributors"
}
],
"require": {
"php": "^8.1",
"friendsofsymfony/rest-bundle": "^3.0",
"jms/serializer-bundle": "^4.0|^5.0",
"symfony/framework-bundle": "^5.4|^6.4",
"symfony/asset": "^5.4|^6.4",
"symfony/dependency-injection": "^5.4|^6.4",
"symfony/routing": "^5.4|^6.4",
"symfony/security-bundle": "^5.4|^6.4",
"symfony/yaml": "^5.4|^6.4",
"symfony/form": "^5.4|^6.4",
"symfony/validator": "^5.4|^6.4",
"symfony/twig-bundle": "^5.4|^6.4",
"symfony/twig-bridge": "^5.4|^6.4",
"twig/twig": "^3.0",
"phpoption/phpoption": "^1.1",
"doctrine/annotations": "^1.0",
"handcraftedinthealps/rest-routing-bundle": "^1.0"
},
"suggest": {
"ornicar/akismet-bundle": "Integrate Akismet for spam detection.",
"symfony/acl-bundle": "Integrates the ACL Security component.",
"symfony/assetic-bundle": "Integrates Assetic into Symfony."
},
"require-dev": {
"symfony/browser-kit": "^5.4|^6.4",
"symfony/dom-crawler": "^5.4|^6.4",
"symfony/css-selector": "^5.4|^6.4",
"doctrine/orm": "^2.8",
"doctrine/doctrine-bundle": "^2.4",
"ornicar/akismet-bundle": "dev-master",
"symfony/expression-language": "^5.4|^6.4",
"symfony/phpunit-bridge": "^5.4|^6.4",
"phpunit/phpunit": "^9.4",
"sonata-project/user-bundle": "^5.10",
"symfony/process": "^6.4"
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
},
"autoload": {
"psr-4": {
"FOS\\CommentBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FOS\\CommentBundle\\Tests\\": "tests/"
}
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"symfony/flex": false,
"symfony/thanks": false
}
}
}