-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (54 loc) · 1.38 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
{
"name": "struggle-for-php/sfp-stubs-psr-log",
"description": "Stubs to let Static Analysis understand psr/log (PSR-3)",
"keywords": ["stub", "stubs", "static analysis", "static-analysis", "psr3", "log", "exception"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "sasezaki",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0.0"
},
"require-dev": {
"ext-simplexml": "*",
"psr/log": "^3",
"rector/rector": "0.15.21",
"squizlabs/php_codesniffer": "^3.7",
"symfony/console": "^5",
"vimeo/psalm": "^5.8",
"weirdan/codeception-psalm-module": "^0.14.0"
},
"autoload-dev": {
"psr-4": {
"SfpDev\\Stubs\\Psr\\Log\\": "src-dev",
"SfpTest\\Stubs\\Psr\\Log\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "8.0.99"
}
},
"conflict": {
"psr/log": "^1 || ^2 || >=4"
},
"scripts" : {
"check": [
"@cs-check",
"@test",
"@analyze"
],
"analyze": "psalm",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "codecept run -v"
}
}