summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 5781780a8480670b55ac325ae8b4f61bc89dceb0 (plain)
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
57
58
{
    "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.2.24"
        }
    },
    "require": {
        "php": "^7.2.0|^8.0.0",
        "ext-filter": "*",
        "ext-json": "*",
        "ext-tokenizer": "*",
        "composer/semver": "^1.4|^2.0|^3.0",
        "composer/xdebug-handler": "^1.3.2|^2.0.0",
        "felixfbecker/advanced-json-rpc": "^3.0.4",
        "microsoft/tolerant-php-parser": "^0.1.0",
        "netresearch/jsonmapper": "^1.6.0|^2.0|^3.0|^4.0",
        "sabre/event": "^5.0.3",
        "symfony/console": "^3.2|^4.0|^5.0",
        "symfony/polyfill-mbstring": "^1.11.0",
        "symfony/polyfill-php80": "^1.20.0",
        "tysonandre/var_representation_polyfill": "^0.0.2"
    },
    "suggest": {
        "ext-ast": "Needed for parsing ASTs (unless --use-fallback-parser is used). 1.0.1+ is needed, 1.0.14+ 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.",
        "ext-var_representation": "Suggested for converting values to strings in issue messages"
    },
    "require-dev": {
        "phpunit/phpunit": "^8.5.0"
    },
    "autoload": {
        "psr-4": {"Phan\\": "src/Phan"}
    },
    "autoload-dev": {
        "psr-4": {"Phan\\Tests\\": "tests/Phan"}
    },
    "bin": ["phan", "phan_client", "tocheckstyle"]
}