-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
83 lines (83 loc) · 2.63 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
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
78
79
80
81
82
83
{
"name": "beechit/json-to-code-climate-subset-converter",
"description": "CLI tool that'll convert supported JSON files to a subset of the Code Climate JSON format.",
"keywords": [
"beech",
"beech.it",
"code-climate",
"code-climate-subset",
"gitlab",
"phan",
"php_codesniffer",
"phplint",
"phpmd",
"phpstan",
"psalm",
"json-to-code-climate-subset-converter"
],
"homepage": "https://github.com/beechit/json-to-code-climate-subset-converter",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Tom de Wit",
"email": "[email protected]",
"homepage": "http://www.beech.it",
"role": "Developer"
}
],
"require": {
"php": "^7.3|^8.0",
"ext-json": "*",
"phlak/config": "^7.0",
"symfony/console": "^4.0|^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"infection/infection": "^0.18.2",
"overtrue/phplint": "^1.2",
"phan/phan": "^4.0",
"phpstan/phpstan": "^0.12.7",
"phpunit/phpunit": "^9.0",
"rregeer/phpunit-coverage-check": "^0.3.1",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^3.8"
},
"bin": [
"bin/converter"
],
"autoload": {
"psr-4": {
"BeechIt\\JsonToCodeClimateSubsetConverter\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BeechIt\\JsonToCodeClimateSubsetConverter\\Tests\\": "tests"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit",
"phpunit-ci": "vendor/bin/phpunit && vendor/bin/coverage-check build/coverage/clover.xml 100",
"infection": [
"phpunit",
"vendor/bin/infection --coverage=build/coverage"
],
"infection-ci": [
"phpunit",
"XDEBUG_MODE=coverage vendor/bin/infection --coverage=build/coverage --min-msi=100 --min-covered-msi=100"
],
"phpstan": "vendor/bin/phpstan analyse src --level max",
"psalm": "vendor/bin/psalm src",
"phplint": "vendor/bin/phplint src",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix",
"php-cs-fixer-ci": "vendor/bin/php-cs-fixer fix --dry-run --stop-on-violation",
"php-cbf": "vendor/bin/phpcbf src --standard=PSR1,PSR2,PSR12",
"php-cs": "vendor/bin/phpcs src --standard=PSR1,PSR2,PSR12",
"phan": "vendor/bin/phan --allow-polyfill-parser src",
"docker-build": "docker build -t converter ."
},
"config": {
"sort-packages": true
}
}