-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.29 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
{
"name": "boesing/psalm-plugin-stringf",
"type": "psalm-plugin",
"description": "Psalm plugin to work with `sprintf`, `printf`, `sscanf` and `fscanf`.",
"license": "BSD-3-Clause",
"require": {
"php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0",
"ext-simplexml": "*",
"vimeo/psalm": "^5.7.1",
"webmozart/assert": "^1.11"
},
"require-dev": {
"codeception/codeception": "^4.1",
"doctrine/coding-standard": "^11.1",
"codeception/module-phpbrowser": "^2.0",
"codeception/module-asserts": "^2.0",
"weirdan/codeception-psalm-module": "^0.14.0",
"symfony/yaml": "^5.4",
"symfony/console": "^5.4",
"symfony/finder": "^5.4",
"composer/xdebug-handler": "^2"
},
"extra": {
"psalm": {
"pluginClass": "Boesing\\PsalmPluginStringf\\Plugin"
}
},
"autoload": {
"psr-4": {
"Boesing\\PsalmPluginStringf\\": "src/"
}
},
"minimum-stability": "stable",
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "codecept run",
"analyze": "psalm --no-cache"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}