-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.66 KB
/
Copy pathcomposer.json
File metadata and controls
59 lines (59 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
56
57
58
59
{
"name": "rector/swiss-knife",
"description": "Swiss knife in pocket of every upgrade architect",
"license": "MIT",
"bin": [
"bin/swiss-knife"
],
"require": {
"php": ">=8.4",
"entropy/entropy": "^0.4.6",
"nette/robot-loader": "^4.1",
"nette/utils": "^4.1",
"nikic/php-parser": "^5.7",
"symfony/finder": "^8.1",
"symfony/yaml": "^8.1",
"webmozart/assert": "^2.4"
},
"require-dev": {
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.2",
"phpunit/phpunit": "^12.5",
"rector/jack": "^1.1",
"rector/rector": "^2.4",
"shipmonk/composer-dependency-analyser": "^1.8",
"symfony/config": "^6.4",
"symfony/dependency-injection": "^6.4",
"symplify/easy-coding-standard": "^13.2",
"symplify/phpstan-rules": "^14.12",
"tomasvotruba/class-leak": "^2.1",
"tomasvotruba/unused-public": "^2.2",
"tracy/tracy": "^2.12"
},
"autoload": {
"psr-4": {
"Rector\\SwissKnife\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Rector\\SwissKnife\\Tests\\": "tests"
},
"classmap": [
"stubs"
]
},
"config": {
"sort-packages": true,
"platform-check": false,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --fix --ansi",
"phpstan": "vendor/bin/phpstan analyse --ansi",
"rector": "vendor/bin/rector process --ansi"
}
}