-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·38 lines (38 loc) · 916 Bytes
/
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
{
"name": "savinmikhail/pr_risk_highlighter",
"description": "The github action to highlight risky parts in PRs",
"type": "library",
"autoload": {
"psr-4": {
"SavinMikhail\\PrRiskHighLighter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SavinMikhail\\Tests\\PrRiskHighLighter\\": "tests/"
}
},
"authors": [
{
"name": "Savin Mikhail",
"email": "mikhail.d.savin@gmail.com"
}
],
"license": "MIT",
"require-dev": {
"phpunit/phpunit": "^11.1",
"phpro/grumphp": "^2.5",
"squizlabs/php_codesniffer": "^3.9",
"phpmd/phpmd": "^2.15"
},
"require": {
"guzzlehttp/guzzle": "^7.8",
"php": ">=8.2",
"sebastian/diff": "^6.0"
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
}
}
}