summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: c4afb7d6937b32e0ad843d2a4ed7ed4f64e25e46 (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
{
    "name": "phpdocumentor/type-resolver",
    "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
    "type": "library",
    "license": "MIT",
    "authors": [
        {
          "name": "Mike van Riel",
          "email": "me@mikevanriel.com"
        }
    ],
    "require": {
        "php": "^7.3 || ^8.0",
        "phpdocumentor/reflection-common": "^2.0",
        "phpstan/phpdoc-parser": "^1.13",
        "doctrine/deprecations": "^1.0"
    },
    "require-dev": {
        "ext-tokenizer": "*",
        "phpunit/phpunit": "^9.5",
        "phpstan/phpstan": "^1.8",
        "phpstan/phpstan-phpunit": "^1.1",
        "phpstan/extension-installer": "^1.1",
        "vimeo/psalm": "^4.25",
        "rector/rector": "^0.13.9",
        "phpbench/phpbench": "^1.2"
    },
    "autoload": {
        "psr-4": {
            "phpDocumentor\\Reflection\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "phpDocumentor\\Reflection\\": ["tests/unit", "tests/benchmark"]
        }
    },
    "extra": {
        "branch-alias": {
            "dev-1.x": "1.x-dev"
        }
    },
    "config": {
        "platform": {
            "php": "7.3.0"
        },
        "allow-plugins": {
            "phpstan/extension-installer": true
        }
    }
}