forked from phpstan/phpstan-src
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
82 lines (82 loc) · 1.72 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
{
"name": "phpstan/phpstan-src",
"description": "PHPStan - PHP Static Analysis Tool",
"license": [
"MIT"
],
"require": {
"php": "^7.1",
"clue/ndjson-react": "^1.0",
"composer/xdebug-handler": "^1.3.0",
"hoa/compiler": "3.17.08.08",
"hoa/exception": "^1.0",
"hoa/regex": "1.17.01.13",
"jean85/pretty-package-versions": "^1.0.3",
"nette/bootstrap": "^3.0",
"nette/di": "^3.0",
"nette/finder": "^2.5",
"nette/neon": "^3.0",
"nette/robot-loader": "^3.2.2",
"nette/schema": "^1.0",
"nette/utils": "^3.1.1",
"nikic/php-parser": "^4.4.0",
"ondram/ci-detector": "^3.1",
"ondrejmirtes/better-reflection": "^4.0.1",
"phpstan/phpdoc-parser": "^0.4.4",
"react/child-process": "^0.6.1",
"react/event-loop": "^1.1",
"react/socket": "^1.3",
"react/stream": "^1.1",
"symfony/console": "^4.3",
"symfony/finder": "^4.3"
},
"replace": {
"phpstan/phpstan": "self.version"
},
"require-dev": {
"brianium/paratest": "^2.0",
"ergebnis/composer-normalize": "^2.0.2",
"nategood/httpful": "^0.2.20",
"phing/phing": "^2.16.0",
"php-parallel-lint/php-parallel-lint": "^1.2.0",
"phpstan/phpstan-deprecation-rules": "^0.12",
"phpstan/phpstan-php-parser": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"phpunit/phpunit": "^7.5.18"
},
"config": {
"platform": {
"php": "7.1.3"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.12-dev"
}
},
"autoload": {
"psr-4": {
"PHPStan\\": [
"src/"
]
}
},
"autoload-dev": {
"psr-4": {
"PHPStan\\": [
"build/PHPStan"
]
},
"classmap": [
"tests/e2e",
"tests/PHPStan"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"bin/phpstan"
]
}