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
51
52
53
54
55
56
|
{
"name": "phan/phan",
"description": "A static analyzer for PHP",
"keywords": ["php", "static", "analyzer"],
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Tyson Andre"
},
{
"name": "Rasmus Lerdorf"
},
{
"name": "Andrew S. Morrison"
}
],
"config": {
"sort-packages": true,
"platform": {
"php": "7.1.22"
}
},
"require": {
"php": "^7.1.0",
"ext-filter": "*",
"ext-json": "*",
"ext-tokenizer": "*",
"composer/semver": "^1.4",
"composer/xdebug-handler": "^1.3.2",
"felixfbecker/advanced-json-rpc": "^3.0.4",
"microsoft/tolerant-php-parser": "0.0.18",
"netresearch/jsonmapper": "^1.6.0",
"sabre/event": "^5.0",
"symfony/console": "^2.3|^3.0|^4.0|^5.0",
"symfony/polyfill-mbstring": "^1.11.0"
},
"suggest": {
"ext-ast": "Needed for parsing ASTs (unless --use-fallback-parser is used). 1.0.1+ is needed.",
"ext-iconv": "Either iconv or mbstring is needed to ensure issue messages are valid utf-8",
"ext-igbinary": "Improves performance of polyfill when ext-ast is unavailable",
"ext-mbstring": "Either iconv or mbstring is needed to ensure issue messages are valid utf-8",
"ext-tokenizer": "Needed for non-AST support and file/line-based suppressions."
},
"require-dev": {
"brianium/paratest": "^3.1.2",
"phpunit/phpunit": "^7.5.0"
},
"autoload": {
"psr-4": {"Phan\\": "src/Phan"}
},
"autoload-dev": {
"psr-4": {"Phan\\Tests\\": "tests/Phan"}
},
"bin": ["phan", "phan_client", "tocheckstyle"]
}
|