forked from ezsystems/CommentsBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.12 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
{
"name": "ezsystems/comments-bundle",
"description": "Commenting system for eZ Publish",
"license": "GPL-2.0",
"type": "ezplatform-bundle",
"authors": [
{
"name": "Jerome Vieilledent",
"email": "[email protected]"
},
{
"name": "Bertrand Dunogier",
"email": "[email protected]"
}
],
"require": {
"ezsystems/ezpublish-kernel": "~6.0@dev || ^7.0@dev",
"symfony-cmf/routing": "~1.1"
},
"require-dev": {
"phpunit/phpunit": "^5.7|^6.0",
"friendsofphp/php-cs-fixer": "~2.7.1",
"matthiasnoback/symfony-dependency-injection-test": "~1.0|~2.0"
},
"suggest": {
"ezsystems/ngsymfonytools-bundle": "Needed for use with legacy backend tab for administration of comments"
},
"autoload": {
"psr-0": {"EzSystems\\CommentsBundle": ""}
},
"target-dir": "EzSystems/CommentsBundle",
"scripts": {
"fix-cs": "@php ./vendor/bin/php-cs-fixer fix -v --show-progress=estimating"
},
"extra": {
"branch-alias": {
"dev-master": "6.1.x-dev"
}
}
}