1{
2  "name": "antlr/antlr4-php-runtime",
3  "type": "library",
4  "description": "PHP 7 and 8.0 runtime for ANTLR 4",
5  "keywords": ["antlr4", "php", "runtime"],
6  "license": [
7    "BSD-3-Clause"
8  ],
9  "minimum-stability": "dev",
10  "prefer-stable": true,
11  "require": {
12    "php": "7.4 - 8.0",
13    "ext-mbstring": "*"
14  },
15  "require-dev": {
16    "phpstan/phpstan": "^0.11.4",
17    "slevomat/coding-standard": "^5.0.4",
18    "squizlabs/php_codesniffer": "^3.4.1",
19    "phpstan/extension-installer": "^1.0"
20  },
21  "autoload": {
22    "psr-4": {
23      "Antlr\\Antlr4\\Runtime\\": "src/"
24    }
25  },
26  "autoload-dev": {
27    "psr-4": {
28      "Antlr\\Antlr4\\Runtime\\Tests\\": "tests/"
29    }
30  },
31  "extra": {
32    "branch-alias": {
33      "dev-master": "0.2-dev"
34    }
35  }
36}
37