forked from phpstan/phpstan-nette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 822 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
{
"name": "phpstan/phpstan-nette",
"description": "Nette Framework class reflection extension for PHPStan",
"license": ["MIT"],
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.8-dev"
}
},
"require": {
"php": "~7.0",
"phpstan/phpstan": "^0.8",
"nette/component-model": "^2.3.0 || ^3.0.0",
"nette/di": "^2.3.0 || ^3.0.0",
"nette/forms": "^2.3.0 || ^3.0.0",
"nette/utils": "^2.3.0 || ^3.0.0"
},
"require-dev": {
"consistence/coding-standard": "~0.13.0",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"phing/phing": "^2.13.0",
"phpunit/phpunit": "^6.2",
"satooshi/php-coveralls": "^1.0",
"slevomat/coding-standard": "^2.0"
},
"autoload": {
"psr-4": {
"PHPStan\\": "src/"
}
},
"autoload-dev": {
"classmap": ["tests/"]
}
}