-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.44 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
{
"name": "bornfight/pdepend-parser",
"description": "Parser for PDepend XML reports.",
"type": "library",
"authors": [
{
"name": "JosipTrbuscic",
"email": "[email protected]"
}
],
"scripts": {
"ci:test": [
"mkdir -p reports",
"phpmd src xml phpmd.xml > reports/phpmd.xml || true",
"phpstan analyse -l 7 --no-progress --no-ansi --error-format=checkstyle src > reports/phpstan-checkstyle.xml || true",
"php-cs-fixer fix --dry-run --diff --format=checkstyle --allow-risky=yes src > reports/php-csfixer-checkstyle.xml || true",
"phpmetrics src --report-html=reports/phpmetrics || true",
"phpcpd --log-pmd=reports/phpcpd.xml src || true",
"codecept run unit --coverage-html --coverage-xml --html --xml || true"
]
},
"require-dev": {
"phpmd/phpmd": "*",
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "*",
"phpmetrics/phpmetrics": "*",
"sebastian/phpcpd": "*",
"codeception/codeception": "*",
"codeception/specify": "^1.1",
"codeception/verify": "^1.0"
},
"autoload-dev": {
"psr-4": {
"Bornfight\\PDependParser\\Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"Bornfight\\PDependParser\\": "src/"
}
},
"require": {
"ext-simplexml": "*"
}
}