-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
51 lines (51 loc) · 1.49 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
{
"name": "struggle-for-php/sfp-phpstan-psr-log",
"description": "Extra strict and opinionated psr/log (psr-3) rules for PHPStan",
"type": "phpstan-extension",
"keywords": ["phpstan", "psr-3", "psr3", "logging", "static analysis"],
"license": [
"MIT"
],
"require": {
"php": "^7.2.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"phpstan/phpstan": "^1.12 || ^2.0",
"struggle-for-php/sfp-stubs-psr-log": "^1.0.1 || ^2 || ^3.0.1"
},
"require-dev": {
"laminas/laminas-coding-standard": "^2.0.0",
"maglnet/composer-require-checker": "^2|^3|^4",
"phpstan/phpstan-phpunit": "^1.3 || ^2.0",
"phpstan/phpstan-strict-rules": "^1.5 || ^2.0",
"phpunit/phpunit": "^8.5.31 || ^9.5.10 || ^10.5.35",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^4 || ^5.26"
},
"conflict": {
"nikic/php-parser": "<4.13.0"
},
"autoload": {
"psr-4": {
"Sfp\\PHPStan\\Psr\\Log\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SfpTest\\PHPStan\\Psr\\Log\\": "test"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"phpstan": {
"includes": [
"extension.neon",
"rules.neon"
]
}
}
}