forked from phpstan/phpstan-strict-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 919 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
{
"name": "phpstan/phpstan-strict-rules",
"description": "Extra strict and opinionated rules for PHPStan",
"license": ["MIT"],
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.10-dev"
}
},
"require": {
"php": "~7.1",
"phpstan/phpstan": "^0.10",
"nikic/php-parser": "^4.0"
},
"require-dev": {
"consistence/coding-standard": "^3.0.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
"jakub-onderka/php-parallel-lint": "^1.0",
"phing/phing": "^2.16.0",
"phpstan/phpstan-phpunit": "^0.10",
"phpunit/phpunit": "^7.0",
"slevomat/coding-standard": "^4.5.2"
},
"autoload": {
"psr-4": {
"PHPStan\\": "src/"
}
},
"autoload-dev": {
"classmap": ["tests/"],
"files": [
"tests/Rules/Functions/data/missing-function-parameter-typehint.php",
"tests/Rules/Functions/data/missing-function-return-typehint.php"
]
}
}