-
Notifications
You must be signed in to change notification settings - Fork 571
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 807 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 807 Bytes
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
{
"name": "phpstan/issue-bot",
"require": {
"php": "^8.3",
"fidry/cpu-core-counter": "^1.3",
"guzzlehttp/guzzle": "^7.5",
"knplabs/github-api": "^3.9",
"league/commonmark": "^2.3",
"nette/neon": "^3.3",
"nette/utils": "^3.2",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"react/child-process": "^0.6.7",
"react/event-loop": "^1.6",
"react/promise": "^3.3",
"symfony/console": "^6.1",
"symfony/finder": "^6.1"
},
"autoload": {
"psr-4": {
"PHPStan\\IssueBot\\": [
"src/"
]
}
},
"config": {
"platform": {
"php": "8.3.99"
},
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "^9.5"
}
}