-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
81 lines (81 loc) · 2.58 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
{
"name": "siketyan/loxcan",
"description": "Universal Lock File Scanner for Git.",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Naoki Ikeguchi",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.7",
"jetbrains/phpstorm-attributes": "^1.0",
"mschop/pathogen": "^0.7.1",
"siketyan/yarn-lock": "^1.1",
"symfony/config": "^6.4|^7.0",
"symfony/console": "^6.4|^7.0",
"symfony/dependency-injection": "^6.4|^7.0",
"symfony/process": "^6.4|^7.0",
"symfony/yaml": "^6.4|^7.0",
"yosymfony/toml": "^1.0"
},
"require-dev": {
"phpunit/php-code-coverage": "^10.1",
"phpunit/phpunit": "^10.5",
"psr/cache": "^3",
"psr/log": "^3",
"quartetcom/static-analysis-kit": "~8.1.19"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/quartetcom/static-analysis-kit.git"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"quartetcom/static-analysis-kit": true
}
},
"autoload": {
"psr-4": {
"Siketyan\\Loxcan\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Siketyan\\Loxcan\\": "tests/"
}
},
"bin": [
"bin/loxcan"
],
"scripts": {
"analyse": "@php static-analysis-kit analyse --no-ecs",
"fix": "@php static-analysis-kit fix --no-ecs",
"fix:all": "@php static-analysis-kit fix --no-ecs --risky --rector",
"fix:rector": "@php static-analysis-kit fix --rector",
"fix:risky": "@php static-analysis-kit fix --no-ecs --risky",
"coverage": "XDEBUG_MODE=coverage phpunit -c ./phpunit.xml --coverage-html ./coverage",
"codecov": "XDEBUG_MODE=coverage phpunit -c ./phpunit.xml --coverage-clover ./coverage.xml",
"test": "@php phpunit -c ./phpunit.xml",
"tests": [
"@analyse",
"@test"
]
},
"scripts-descriptions": {
"analyse": "Analyses code in this project fully.",
"fix": "Tries to fix code in this project automatically.",
"fix:all": "Tries to fix code in this project automatically fully.",
"fix:rector": "Tries to fix code in this project automatically with rector enabled.",
"fix:risky": "Tries to fix code in this project automatically with risky rules.",
"test": "Runs the tests."
}
}