forked from phpstan/phpstan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 904 Bytes
/
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
{
"name": "phpstan/phpstan",
"description": "PHPStan - PHP Static Analysis Tool",
"license": ["MIT"],
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"bin/phpstan"
],
"extra": {
"branch-alias": {
"dev-master": "0.8-dev"
}
},
"require": {
"php": "~7.0",
"nette/bootstrap": "^2.4 || ^3.0",
"nette/di": "^2.4 || ^3.0",
"nette/robot-loader": "^3.0.1",
"nette/utils": "^2.4 || ^3.0",
"nikic/php-parser": "^3.0.2",
"symfony/console": "~2.7 || ~3.0",
"symfony/finder": "~2.7 || ~3.0"
},
"require-dev": {
"consistence/coding-standard": "^2.0.0",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"satooshi/php-coveralls": "^1.0",
"phing/phing": "^2.16.0",
"phpunit/phpunit": "^6.0.7",
"slevomat/coding-standard": "^3.0.0"
},
"autoload": {
"psr-4": {"PHPStan\\": "src/"}
},
"autoload-dev": {
"classmap": ["tests/PHPStan", "tests/TestCase.php"]
}
}