summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 91df816a081355b81dc97a2c345786d30cd6bcca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
    "name": "microsoft/tolerant-php-parser",
    "description": "Tolerant PHP-to-AST parser designed for IDE usage scenarios",
    "type": "library",
    "require": {
        "php": ">=7.2"
    },
    "require-dev": {
        "phpunit/phpunit": "^8.5.15"
    },
    "license": "MIT",
    "authors": [
        {
            "name": "Rob Lourens",
            "email": "roblou@microsoft.com"
        }
    ],
    "autoload": {
        "psr-4": { "Microsoft\\PhpParser\\": ["src/"] }
    }
}