-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.16 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.16 KB
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
{
"name": "rector/phpstan-rules",
"license": "MIT",
"type": "phpstan-extension",
"description": "PHPStan rules for Rector projects - with focus on static reflection, constant re-use and Rector design patterns",
"require": {
"php": ">=8.0",
"symplify/phpstan-rules": "^9.3.22",
"phpstan/phpstan": "^0.12.86",
"nette/utils": "^3.2"
},
"require-dev": {
"symplify/easy-coding-standard": "^9.3.22",
"symplify/phpstan-extensions": "^9.3.22",
"phpstan/extension-installer": "^1.1",
"phpunit/phpunit": "^9.5",
"rector/rector-src": "^0.11.7"
},
"autoload": {
"psr-4": {
"Rector\\PHPStanRules\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Rector\\PHPStanRules\\Tests\\": "tests"
}
},
"extra": {
"phpstan": {
"includes": [
"config/config.neon"
]
}
},
"scripts": {
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --fix --ansi",
"phpstan": "vendor/bin/phpstan analyse --ansi --error-format symplify"
}
}