-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
94 lines (94 loc) · 3.21 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
84
85
86
87
88
89
90
91
92
93
94
{
"name": "aeliot/todo-registrar",
"type": "application",
"description": "Register TODOs from source code in issue tracker",
"license": "MIT",
"authors": [
{
"name": "Anatoliy Melnikov",
"email": "5785276@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"keywords": [
"static analysis",
"TODO registrar",
"TODO comment",
"create issue",
"issue tracking",
"JIRA API"
],
"autoload": {
"psr-4": {
"Aeliot\\TodoRegistrar\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aeliot\\TodoRegistrar\\Test\\": "tests/"
}
},
"bin": [
"bin/todo-registrar"
],
"config": {
"allow-plugins": {
"composer/*": true
},
"sort-packages": true
},
"require": {
"php": "^8.2",
"ext-mbstring": "*",
"ext-tokenizer": "*",
"guzzlehttp/guzzle": "^7.9",
"http-interop/http-factory-guzzle": "^1.2",
"knplabs/github-api": "^3.14",
"lesstif/php-jira-rest-client": "^5.8",
"symfony/finder": "^5.4|^6.0|^7.0",
"symfony/yaml": "^3.4|^4.0|^5.0|^6.0|^7.0"
},
"require-dev": {
"dg/bypass-finals": "^1.7",
"phpstan/phpstan": "^2.0",
"roave/security-advisories": "dev-latest"
},
"scripts": {
"build": [
"php scripts/box/prepare-config.php",
"box compile --config=scripts/box/config.json"
],
"check-all": [
"@cs-fixer-check",
"@phpstan",
"@phpunit"
],
"cs-baseline": "@cs-fixer-baseline",
"cs-check": "@cs-fixer-check",
"cs-fix": "@cs-fixer-fix",
"cs-fixer-baseline": "XDEBUG_MODE=off tools/pcsf-baseline.phar -b scripts/php-cs-fixer/baseline.json -c scripts/php-cs-fixer/config.php -f scripts/php-cs-fixer/finder.php",
"cs-fixer-check": "@cs-fixer-fix --dry-run",
"cs-fixer-fix": "tools/php-cs-fixer.phar fix -vv --config=scripts/php-cs-fixer/config.php",
"phive-install": "phive install --trust-gpg-keys $(cat .phive/trust-gpg-keys.txt)",
"phpstan": [
"@phpstan-clear",
"@phpstan-analyse"
],
"phpstan-analyse": "vendor/bin/phpstan analyse -c scripts/phpstan/config.neon ",
"phpstan-baseline": [
"@phpstan-clear",
"@phpstan-analyse --generate-baseline scripts/phpstan/baseline.neon --allow-empty-baseline"
],
"phpstan-clear": "vendor/bin/phpstan clear-result-cache -c scripts/phpstan/config.neon",
"phpunit": "tools/phpunit.phar -c scripts/phpunit/phpunit.xml",
"require-check": "tools/composer-require-checker.phar check --config-file=scripts/composer-require-checker/config.json composer.json --output=text",
"unused": "XDEBUG_MODE=off tools/composer-unused.phar unused -c ./scripts/composer-unused/config.php"
},
"suggest": {
"staabm/phpstan-todo-by": "For the monitoring of outdated comments when ticket closed and TODO-comment should be removed"
},
"support": {
"issues": "https://github.com/Aeliot-Tm/todo-registrar/issues"
}
}