-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
101 lines (101 loc) · 2.94 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
95
96
97
98
99
100
101
{
"name": "artarts36/merge-request-linter",
"description": "MR Linter - tools for validating merge requests",
"type": "project",
"repositories": [
{
"url": "https://github.com/ArtARTs36/docs-retriever",
"type": "git"
}
],
"require": {
"php": "^8.2",
"artarts36/str": "^2.7.0",
"symfony/console": "^4.0 | ^5.0 | ^6.0",
"guzzlehttp/psr7": "^2",
"artarts36/local-file-system": "^0.1.2",
"symfony/yaml": "^6.2",
"ext-mbstring": "*",
"psr/log": "^3.0",
"psr/http-client": "^1.0",
"artarts36/file-system-contracts": "^0.2.0",
"psr/http-message": "^1.0",
"psr/container": "^2.0",
"psr/event-dispatcher": "^1.0",
"artarts36/empty-contracts": "^0.1.0",
"guzzlehttp/guzzle": "^7.5",
"guzzlehttp/promises": "^1.5",
"league/commonmark": "^2.3",
"psr/clock": "^1.0",
"twig/twig": "^3.5",
"artarts36/context-logger": "^0.1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"artarts36/php-cs-fixer-good-fixers": "^0.1.2",
"phpstan/phpstan": "^1.10",
"qossmic/deptrac-shim": "^1.0",
"artarts36/array-file-system": "^0.1.0",
"artarts36/docs-retriever": "dev-dev"
},
"replace": {
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-ctype": "*"
},
"license": "MIT",
"autoload": {
"psr-4": {
"ArtARTs36\\MergeRequestLinter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ArtARTs36\\MergeRequestLinter\\Tests\\": "tests/",
"ArtARTs36\\MergeRequestLinter\\DocBuilder\\": "docs/Builder"
}
},
"authors": [
{
"name": "ArtARTs36",
"email": "temicska99@mail.ru"
}
],
"bin": [
"bin/mr-linter"
],
"scripts": {
"lint": [
"php-cs-fixer fix --dry-run --verbose --diff --ansi"
],
"lint-fix": [
"php-cs-fixer fix --verbose --diff --ansi"
],
"test": [
"./vendor/bin/phpunit -v --coverage-text --colors=always --configuration phpunit.xml"
],
"test-coverage": [
"XDEBUG_MODE=coverage ./vendor/bin/phpunit -v --coverage-text --colors=always --configuration phpunit.xml --coverage-clover ./coverage.xml"
],
"stat-analyse": [
"./vendor/bin/phpstan analyse src --memory-limit 2G"
],
"mr-lint": [
"./bin/mr-linter lint"
],
"deptrac": [
"./vendor/bin/deptrac"
],
"test-e2e": [
"./vendor/bin/phpunit --filter testLint ./tests/E2E/LintE2ETest.php"
],
"docs": [
"@php ./docs/builder/build.php"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}