-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 888 Bytes
/
composer.json
File metadata and controls
51 lines (51 loc) · 888 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "phpstan/phpstan-dibi",
"type": "phpstan-extension",
"description": "Dibi class reflection extension for PHPStan",
"license": [
"MIT"
],
"require": {
"php": "^7.1 || ^8.0",
"phpstan/phpstan": "^0.12.60"
},
"conflict": {
"dibi/dibi": "<3.0"
},
"require-dev": {
"dibi/dibi": "~4.0",
"phing/phing": "^2.16.3",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan-phpunit": "^0.12.16",
"phpstan/phpstan-strict-rules": "^0.12.6",
"phpunit/phpunit": "^7.5.20"
},
"config": {
"platform": {
"php": "7.4.6"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.12-dev"
},
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"autoload": {
"psr-4": {
"PHPStan\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}