forked from phpstan/phpstan-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
128 lines (128 loc) · 3.06 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "phpstan/phpstan-src",
"description": "PHPStan - PHP Static Analysis Tool",
"license": [
"MIT"
],
"require": {
"php": "^8.1",
"composer-runtime-api": "^2.0",
"clue/ndjson-react": "^1.0",
"composer/ca-bundle": "^1.2",
"composer/xdebug-handler": "^3.0.3",
"fidry/cpu-core-counter": "^0.5.0",
"hoa/compiler": "3.17.08.08",
"hoa/exception": "^1.0",
"hoa/regex": "1.17.01.13",
"jetbrains/phpstorm-stubs": "dev-master#8ea3bf44722f76a3a32c89fe769b6144c253f8a6",
"nette/bootstrap": "^3.0",
"nette/di": "3.1.10",
"nette/finder": "^2.5",
"nette/neon": "^3.3.1",
"nette/schema": "^1.2.2",
"nette/utils": "^3.2.5",
"nikic/php-parser": "^4.17.1",
"ondram/ci-detector": "^3.4.0",
"ondrejmirtes/better-reflection": "6.21.0",
"phpstan/php-8-stubs": "0.3.82",
"phpstan/phpdoc-parser": "1.25.0",
"react/async": "^3",
"react/child-process": "^0.6.4",
"react/dns": "^1.10",
"react/event-loop": "^1.2",
"react/http": "^1.1",
"react/promise": "^2.8",
"react/socket": "^1.3",
"react/stream": "^1.1",
"symfony/console": "^5.4.3",
"symfony/finder": "^5.4.3",
"symfony/polyfill-intl-grapheme": "^1.23",
"symfony/polyfill-intl-normalizer": "^1.23",
"symfony/polyfill-mbstring": "^1.23",
"symfony/polyfill-php73": "^1.23",
"symfony/polyfill-php74": "^1.23",
"symfony/polyfill-php80": "^1.23",
"symfony/polyfill-php81": "^1.27",
"symfony/process": "^5.4.3",
"symfony/service-contracts": "^2.5.0",
"symfony/string": "^5.4.3"
},
"replace": {
"phpstan/phpstan": "self.version"
},
"require-dev": {
"brianium/paratest": "^6.5",
"cweagans/composer-patches": "^1.7.3",
"ondrejmirtes/simple-downgrader": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.2.0",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-nette": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.6",
"phpunit/phpunit": "^9.5.4",
"shipmonk/name-collision-detector": "^2.0"
},
"config": {
"platform": {
"php": "8.1.99"
},
"platform-check": false,
"sort-packages": true,
"allow-plugins": {
"cweagans/composer-patches": true
}
},
"extra": {
"composer-exit-on-patch-failure": true,
"patches": {
"hoa/iterator": [
"patches/Buffer.patch",
"patches/Lookahead.patch"
],
"hoa/compiler": [
"patches/Rule.patch"
],
"hoa/consistency": [
"patches/Consistency.patch"
],
"hoa/protocol": [
"patches/Node.patch",
"patches/Wrapper.patch"
],
"hoa/stream": [
"patches/Stream.patch"
],
"jetbrains/phpstorm-stubs": [
"patches/PDO.patch",
"patches/ReflectionProperty.patch",
"patches/SessionHandler.patch",
"patches/xmlreader.patch",
"patches/dom_c.patch"
]
}
},
"autoload": {
"psr-4": {
"PHPStan\\": [
"src/"
]
},
"files": ["src/dumpType.php", "src/autoloadFunctions.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"
]
}