forked from phpstan/phpstan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.24 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
{
"name": "phpstan/phpstan",
"description": "PHPStan - PHP Static Analysis Tool",
"license": ["MIT"],
"bin": [
"bin/phpstan"
],
"extra": {
"branch-alias": {
"dev-master": "0.10-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "~7.1",
"nette/bootstrap": "^2.4 || ^3.0",
"nette/di": "^2.4.7 || ^3.0",
"nette/robot-loader": "^3.0.1",
"nette/utils": "^2.4.5 || ^3.0",
"nikic/php-parser": "^4.0.2",
"symfony/console": "~3.2 || ~4.0",
"symfony/finder": "~3.2 || ~4.0",
"jean85/pretty-package-versions": "^1.0.3",
"phpstan/phpdoc-parser": "^0.3",
"composer/xdebug-handler": "^1.0"
},
"require-dev": {
"ext-intl": "*",
"ext-gd": "*",
"ext-mysqli": "*",
"ext-zip": "*",
"brianium/paratest": "^2.0",
"consistence/coding-standard": "^3.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
"jakub-onderka/php-parallel-lint": "^1.0",
"phing/phing": "^2.16.0",
"phpstan/phpstan-php-parser": "^0.10",
"phpstan/phpstan-phpunit": "^0.10",
"phpstan/phpstan-strict-rules": "^0.10",
"phpunit/phpunit": "^7.0",
"slevomat/coding-standard": "^4.6.2"
},
"autoload": {
"psr-4": {"PHPStan\\": ["src/", "build/PHPStan"]}
},
"autoload-dev": {
"classmap": ["tests/PHPStan"]
}
}