summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: cf8f49d3705fb90dba61886a196988f6d550a92d (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
{
    "name": "phpdocumentor/reflection-docblock",
    "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
    "type": "library",
    "license": "MIT",
    "authors": [
        {
            "name": "Mike van Riel",
            "email": "me@mikevanriel.com"
        },
        {
            "name": "Jaap van Otterdijk",
            "email": "opensource@ijaap.nl"
        }
    ],
    "require": {
        "php": "^7.4 || ^8.0",
        "phpdocumentor/type-resolver": "^1.7",
        "webmozart/assert": "^1.9.1",
        "phpdocumentor/reflection-common": "^2.2",
        "ext-filter": "*",
        "phpstan/phpdoc-parser": "^1.7",
        "doctrine/deprecations": "^1.1"
    },
    "require-dev": {
        "mockery/mockery": "~1.3.5",
        "phpunit/phpunit": "^9.5",
        "phpstan/phpstan": "^1.8",
        "phpstan/phpstan-mockery": "^1.1",
        "phpstan/extension-installer": "^1.1",
        "phpstan/phpstan-webmozart-assert": "^1.2",
        "vimeo/psalm": "^5.13"
    },
    "autoload": {
        "psr-4": {
            "phpDocumentor\\Reflection\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "phpDocumentor\\Reflection\\": ["tests/unit", "tests/integration"]
        }
    },
    "config": {
        "platform": {
            "php":"7.4.0"
        },
        "allow-plugins": {
            "phpstan/extension-installer": true
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "5.x-dev"
        }
    }
}