-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 900 Bytes
/
composer.json
File metadata and controls
48 lines (48 loc) · 900 Bytes
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
{
"name": "schlndh/maria-stan",
"description": "Static analyser for MariaDB queries",
"type": "phpstan-extension",
"license": "MIT",
"autoload": {
"psr-4": {
"MariaStan\\": "src/"
},
"files": ["src/PHPStan/functions.php"]
},
"autoload-dev": {
"psr-4": {
"MariaStan\\": "tests/"
}
},
"authors": [
{
"name": "schldnh"
}
],
"require": {
"php": "^8.1",
"ext-mbstring": "*",
"phpstan/phpstan": "^2.1.2"
},
"require-dev": {
"ext-mysqli": "*",
"phpunit/phpunit": "^10.5.51",
"squizlabs/php_codesniffer": "^4",
"slevomat/coding-standard": "~8.28.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
}
}