forked from samsonasik/phpstan-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.66 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.66 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"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/astral": "^10.1",
"symplify/phpstan-rules": "^10.1",
"phpstan/phpstan": "^1.4",
"nette/utils": "^3.2"
},
"require-dev": {
"symplify/easy-coding-standard": "^10.1",
"symplify/phpstan-extensions": "^10.1",
"phpstan/extension-installer": "^1.1",
"phpunit/phpunit": "^9.5",
"rector/rector": "dev-main",
"symfony/console": "^6.0",
"symfony/dependency-injection": "^6.0",
"symplify/monorepo-builder": "^10.1",
"phpstan/phpstan-webmozart-assert": "^1.0",
"phpstan/phpstan-strict-rules": "^1.1",
"helmich/typo3-typoscript-parser": "^2.4.1",
"tracy/tracy": "^2.9"
},
"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",
"release": "vendor/bin/monorepo-builder release patch --ansi"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}