forked from FriendsOfSymfony/FOSCommentBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 2.3 KB
/
Copy pathcomposer.json
File metadata and controls
77 lines (77 loc) · 2.3 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
{
"name": "short-edition/comment-bundle",
"type": "symfony-bundle",
"description": "This Bundle provides threaded comment functionality for Symfony applications",
"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"
}
],
"support": {
"issues": "https://github.com/FriendsOfSymfony/FOSCommentBundle/issues"
},
"require": {
"php": "^8.2",
"jms/serializer-bundle": "^4.0 || ^5.0",
"symfony/framework-bundle": "^6.4 || ^7.4 || ^8.0",
"symfony/asset": "^6.4 || ^7.4 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.4 || ^8.0",
"symfony/routing": "^6.4 || ^7.4 || ^8.0",
"symfony/security-bundle": "^6.4 || ^7.4 || ^8.0",
"symfony/yaml": "^6.4 || ^7.4 || ^8.0",
"symfony/form": "^6.4 || ^7.4 || ^8.0",
"symfony/validator": "^6.4 || ^7.4 || ^8.0",
"symfony/twig-bundle": "^6.4 || ^7.4 || ^8.0",
"symfony/twig-bridge": "^6.4 || ^7.4 || ^8.0",
"twig/twig": "^3.0",
"phpoption/phpoption": "^1.9"
},
"suggest": {
"friendsofsymfony/user-bundle": "Allows for user integration.",
"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": "^6.4 || ^7.4 || ^8.0",
"symfony/dom-crawler": "^6.4 || ^7.4 || ^8.0",
"symfony/css-selector": "^6.4 || ^7.4 || ^8.0",
"doctrine/orm": "^3.6",
"doctrine/doctrine-bundle": "^3.0",
"ornicar/akismet-bundle": "dev-master",
"symfony/expression-language": "^6.4 || ^7.4 || ^8.0",
"symfony/phpunit-bridge": "^6.4 || ^7.4 || ^8.0",
"phpunit/phpunit": "^12",
"friendsofphp/php-cs-fixer": "^3.9"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"autoload": {
"psr-4": {
"FOS\\CommentBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"prefer-stable": true
}