-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
46 lines (46 loc) · 1.32 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
46
{
"name": "ezsystems/comments-bundle",
"description": "Commenting system for eZ Platform",
"license": "GPL-2.0",
"type": "ezplatform-bundle",
"authors": [
{
"name": "Jerome Vieilledent",
"email": "[email protected]"
},
{
"name": "Bertrand Dunogier",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"ezsystems/ezplatform-admin-ui": "^1.5",
"ezsystems/ezpublish-kernel": "^7.5"
},
"require-dev": {
"phpunit/phpunit": "^7.5.16",
"friendsofphp/php-cs-fixer": "v2.15.3",
"matthiasnoback/symfony-dependency-injection-test": "~3.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",
"test": "@php ./vendor/bin/phpunit"
},
"scripts-descriptions": {
"fix-cs": "Fix Coding standard issues in current checkout.",
"test": "Run all unit tests"
},
"extra": {
"branch-alias": {
"dev-master": "7.0.x-dev"
}
}
}