forked from devsam/core
phan 설치
This commit is contained in:
Vendored
+57
@@ -0,0 +1,57 @@
|
||||
{
|
||||
"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.20",
|
||||
"netresearch/jsonmapper": "^1.6.0|^2.0",
|
||||
"sabre/event": "^5.0",
|
||||
"symfony/console": "^2.3|^3.0|^4.0|^5.0",
|
||||
"symfony/polyfill-mbstring": "^1.11.0",
|
||||
"symfony/polyfill-php72": "^1.15"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-ast": "Needed for parsing ASTs (unless --use-fallback-parser is used). 1.0.1+ is needed, 1.0.6+ is recommended.",
|
||||
"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 fallback/polyfill parser support and file/line-based suppressions."
|
||||
},
|
||||
"require-dev": {
|
||||
"brianium/paratest": "^4.0.0",
|
||||
"phpunit/phpunit": "^7.5.0"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {"Phan\\": "src/Phan"}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {"Phan\\Tests\\": "tests/Phan"}
|
||||
},
|
||||
"bin": ["phan", "phan_client", "tocheckstyle"]
|
||||
}
|
||||
Reference in New Issue
Block a user