-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
60 lines (60 loc) · 1.27 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "antlr/antlr4-php-runtime",
"description": "PHP 8.0+ runtime for ANTLR 4",
"license": [
"BSD-3-Clause"
],
"type": "library",
"keywords": [
"antlr4",
"php",
"runtime"
],
"require": {
"php": "^8.0",
"ext-mbstring": "^8.0",
"psr/log": "^2.0 || ^3.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.15",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.1",
"slevomat/coding-standard": "^7.0",
"squizlabs/php_codesniffer": "^3.6"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Antlr\\Antlr4\\Runtime\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Antlr\\Antlr4\\Runtime\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
}
},
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
}
},
"scripts": {
"test": [
"composer validate",
"composer normalize --dry-run",
"mkdir -p .cache",
"phpcs",
"phpstan analyse"
]
}
}