-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.48 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.48 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
{
"name": "rector/jack",
"description": "Jack helps you incrementally update your `composer.json` dependencies, ensuring your project stays current without the chaos of outdated packages",
"license": "MIT",
"bin": [
"bin/jack"
],
"require": {
"php": ">=8.3",
"composer/semver": "^3.4",
"entropy/entropy": "dev-main",
"nette/utils": "^4.1",
"symfony/process": "^7.4",
"webmozart/assert": "^2.0"
},
"require-dev": {
"phpecs/phpecs": "^2.2",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.5",
"rector/rector": "^2.2",
"rector/swiss-knife": "^2.3",
"shipmonk/composer-dependency-analyser": "^1.8",
"symplify/phpstan-extensions": "^12.0",
"tomasvotruba/class-leak": "^2.1",
"tracy/tracy": "^2.11"
},
"autoload": {
"psr-4": {
"Rector\\Jack\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Rector\\Jack\\Tests\\": "tests"
}
},
"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"
}
}