forked from sonata-project/SonataCommentBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 2.01 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 2.01 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
{
"name": "sonata-project/comment-bundle",
"type": "symfony-bundle",
"description": "Integrate the FOSCommentBundle in the Sonata Project",
"keywords": [
"comment",
"sonata"
],
"homepage": "https://sonata-project.org/bundles/comment",
"license": "MIT",
"authors": [
{
"name": "Thomas Rabaix",
"email": "thomas.rabaix@sonata-project.org",
"homepage": "https://sonata-project.org"
},
{
"name": "Sonata Community",
"homepage": "https://github.com/sonata-project/SonataCommentBundle/contributors"
}
],
"require": {
"php": "^7.1",
"friendsofsymfony/comment-bundle": "^2.0.13",
"sonata-project/core-bundle": "^3.9",
"sonata-project/doctrine-extensions": "^1.0",
"sonata-project/easy-extends-bundle": "^2.4",
"symfony/console": "^3.4 || ^4.2",
"symfony/dependency-injection": "^3.4 || ^4.2",
"symfony/event-dispatcher": "^3.4 || ^4.2",
"symfony/form": "^3.4 || ^4.2",
"symfony/framework-bundle": "^3.4 || ^4.2",
"symfony/http-foundation": "^3.4 || ^4.2",
"symfony/http-kernel": "^3.4 || ^4.2",
"symfony/options-resolver": "^3.4 || ^4.2"
},
"conflict": {
"sonata-project/block-bundle": "<3.11"
},
"require-dev": {
"sonata-project/admin-bundle": "^3.35",
"sonata-project/block-bundle": "^3.11",
"sonata-project/classification-bundle": "^3.6",
"symfony/phpunit-bridge": "^4.2"
},
"suggest": {
"sonata-project/doctrine-orm-admin-bundle": "For doctrine ORM admin integration"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"autoload": {
"psr-4": {
"Sonata\\CommentBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sonata\\CommentBundle\\Tests\\": "tests/"
}
}
}