-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
47 lines (47 loc) · 1.03 KB
/
composer.json
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
{
"name": "antlr/antlr-php-runtime-phpstan",
"type": "phpstan-extension",
"description": "ANTLR4 PHP Runtime extensions for PHPStan.",
"keywords": ["antlr4", "php", "phpstan"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Marcos Passos",
"homepage": "http://github.com/marcospassos"
}
],
"require": {
"php": "^7.2 || ^8.0",
"phpstan/phpstan": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"antlr/antlr4-php-runtime": "^0.5",
"slevomat/coding-standard": "^7.0",
"squizlabs/php_codesniffer": "^3.6",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/extension-installer": "^1.1"
},
"autoload": {
"psr-4": {
"Antlr\\Antlr4\\Runtime\\PhpStan\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/Fixtures"
],
"psr-4": {
"Antlr\\Antlr4\\Runtime\\PhpStan\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
}
}