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
|
{
"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.0.24"
}
},
"require": {
"php": "^7.0.0",
"ext-ast": "^0.1.5",
"composer/semver": "^1.4",
"felixfbecker/advanced-json-rpc": "^3.0",
"microsoft/tolerant-php-parser": "0.0.9",
"sabre/event": "^5.0",
"symfony/console": "^2.3|^3.0|~4.0"
},
"require-dev": {
"phpunit/phpunit": "^6.3.0"
},
"autoload": {
"psr-4": {"Phan\\": "src/Phan"}
},
"autoload-dev": {
"psr-4": {"Phan\\Tests\\": "tests/Phan"}
},
"bin": ["phan", "phan_client", "tocheckstyle"]
}
|