forked from phpstan/phpstan-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
93 lines (93 loc) · 2.11 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
{
"name": "phpstan/phpstan-src",
"description": "PHPStan - PHP Static Analysis Tool",
"license": [
"MIT"
],
"require": {
"php": "^7.4 || ^8.0",
"clue/block-react": "^1.4",
"clue/ndjson-react": "^1.0",
"composer/ca-bundle": "^1.2",
"composer/xdebug-handler": "^2.0.1",
"hoa/compiler": "3.17.08.08",
"hoa/exception": "^1.0",
"hoa/regex": "1.17.01.13",
"jean85/pretty-package-versions": "^1.0.3",
"jetbrains/phpstorm-stubs": "dev-master#2000119caf61d226e7facad68d7a260d8616a925",
"nette/bootstrap": "^3.0",
"nette/di": "^3.0.5",
"nette/finder": "^2.5",
"nette/neon": "^3.0",
"nette/schema": "^1.0",
"nette/utils": "^3.1.3",
"nikic/php-parser": "4.12.0",
"ondram/ci-detector": "^3.4.0",
"ondrejmirtes/better-reflection": "4.3.62",
"phpstan/php-8-stubs": "^0.1.22",
"phpstan/phpdoc-parser": "^0.5.5",
"react/child-process": "^0.6.1",
"react/event-loop": "^1.1",
"react/http": "^1.1",
"react/promise": "^2.8",
"react/socket": "^1.3",
"react/stream": "^1.1",
"symfony/console": "^4.3",
"symfony/finder": "^4.3",
"symfony/service-contracts": "1.1.8"
},
"replace": {
"phpstan/phpstan": "self.version"
},
"require-dev": {
"brianium/paratest": "^6.2.0",
"nategood/httpful": "^0.2.20",
"php-parallel-lint/php-parallel-lint": "^1.2.0",
"phpstan/phpstan-deprecation-rules": "^0.12.3",
"phpstan/phpstan-nette": "^0.12.18",
"phpstan/phpstan-php-parser": "^0.12",
"phpstan/phpstan-phpunit": "^0.12.19",
"phpstan/phpstan-strict-rules": "^0.12",
"phpunit/phpunit": "^9.5.4",
"vaimo/composer-patches": "^4.22"
},
"config": {
"platform": {
"php": "7.4.6"
},
"platform-check": false,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.12-dev"
},
"patcher": {
"search": "patches"
}
},
"autoload": {
"psr-4": {
"PHPStan\\": [
"src/"
]
},
"files": ["src/dumpType.php","src/Testing/functions.php"]
},
"autoload-dev": {
"psr-4": {
"PHPStan\\": [
"build/PHPStan"
]
},
"classmap": [
"tests/e2e",
"tests/PHPStan"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"bin/phpstan"
]
}