-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
56 lines (56 loc) · 1.04 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
{
"name": "phpstan/phpstan-nette",
"type": "phpstan-extension",
"description": "Nette Framework class reflection extension for PHPStan",
"license": [
"MIT"
],
"require": {
"php": "^7.4 || ^8.0",
"phpstan/phpstan": "^2.0"
},
"conflict": {
"nette/application": "<2.3.0",
"nette/component-model": "<2.3.0",
"nette/di": "<2.3.0",
"nette/forms": "<2.3.0",
"nette/http": "<2.3.0",
"nette/utils": "<2.3.0"
},
"require-dev": {
"nette/application": "^3.0",
"nette/di": "^3.1.10",
"nette/forms": "^3.0",
"nette/utils": "^2.3.0 || ^3.0.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^9.6"
},
"config": {
"platform": {
"php": "7.4.6"
},
"sort-packages": true
},
"extra": {
"phpstan": {
"includes": [
"extension.neon",
"rules.neon"
]
}
},
"autoload": {
"psr-4": {
"PHPStan\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}