forked from rectorphp/rector-phpunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (70 loc) · 2.1 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "rector/rector-phpunit",
"type": "rector-extension",
"license": "MIT",
"description": "Rector upgrades rules for PHPUnit",
"require": {
"php": ">=8.1"
},
"require-dev": {
"rector/rector-src": "dev-main",
"phpunit/phpunit": "^10.2",
"phpstan/phpstan": "^1.10.25",
"symplify/phpstan-rules": "^11.4",
"symplify/phpstan-extensions": "^11.2",
"symplify/easy-coding-standard": "^11.5",
"symplify/rule-doc-generator": "^11.2",
"rector/phpstan-rules": "^0.6",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/phpstan-webmozart-assert": "^1.2.2",
"symplify/vendor-patches": "^11.2.0",
"symplify/easy-ci": "^11.2.0",
"rector/rector-generator": "^0.6.15",
"tomasvotruba/type-coverage": "^0.1",
"tomasvotruba/unused-public": "^0.1",
"tomasvotruba/cognitive-complexity": "^0.1"
},
"autoload": {
"psr-4": {
"Rector\\PHPUnit\\": ["src", "rules"]
}
},
"autoload-dev": {
"psr-4": {
"Rector\\PHPUnit\\Tests\\": ["tests", "rules-tests"]
},
"classmap": [
"stubs"
]
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse --ansi --error-format symplify",
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --fix --ansi",
"docs": "vendor/bin/rule-doc-generator generate src rules --output-file docs/rector_rules_overview.md --ansi"
},
"extra": {
"enable-patching": true,
"branch-alias": {
"dev-main": "0.11-dev"
},
"rector": {
"includes": [
"config/config.php"
]
}
},
"conflict": {
"rector/rector": "<0.11"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"cweagans/composer-patches": true,
"rector/extension-installer": true,
"phpstan/extension-installer": true
}
}
}