-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 859 Bytes
/
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": "schlndh/maria-stan",
"description": "Static analyser for MariaDB queries",
"type": "phpstan-extension",
"license": "MIT",
"autoload": {
"psr-4": {
"MariaStan\\": "src/"
}
},
"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": "^9.6.22",
"squizlabs/php_codesniffer": "^3.7",
"slevomat/coding-standard": "~8.15.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"
]
}
}
}