forked from xificurk/phpstan-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 925 Bytes
/
Copy pathcomposer.json
File metadata and controls
33 lines (33 loc) · 925 Bytes
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
{
"name": "phpstan/phpstan-compiler",
"type": "project",
"description": "PHAR Compiler for PHPStan",
"license": ["MIT"],
"require": {
"php": "^7.1",
"symfony/console": "^4.1",
"symfony/process": "^4.1",
"symfony/filesystem": "^4.1"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^1.0",
"phpstan/phpstan": "^0.10",
"phpstan/phpstan-strict-rules": "^0.10",
"phing/phing": "^2.16",
"phpunit/phpunit": "^7.2",
"phpstan/phpstan-phpunit": "^0.10",
"consistence/coding-standard": "^3.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
"slevomat/coding-standard": "^4.6.2"
},
"autoload": {
"psr-4": {
"PHPStan\\Compiler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PHPStan\\Compiler\\": "tests/"
}
}
}