-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.95 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.95 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
60
61
62
63
64
65
{
"name": "rector/argtyper",
"description": "Analyze real method argument types, and add them as type declarations",
"license": "proprietary",
"bin": [
"bin/argtyper"
],
"require": {
"php": "^8.3",
"illuminate/container": "12.39.*",
"nette/utils": "^4.1",
"phpstan/phpstan": "^2.1",
"rector/rector": "^2.3",
"symfony/console": "^6.4",
"symfony/finder": "^7.4",
"symfony/process": "^7.4",
"webmozart/assert": "^1.12|^2.0"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpecs/phpecs": "^2.3",
"phpstan/extension-installer": "^1.4",
"phpunit/phpunit": "^11.5",
"rector/jack": "^0.5.1",
"shipmonk/composer-dependency-analyser": "^1.8",
"symplify/phpstan-extensions": "^12.0",
"tomasvotruba/class-leak": "^2.1",
"tomasvotruba/unused-public": "^2.1",
"tracy/tracy": "^2.11"
},
"autoload": {
"psr-4": {
"Rector\\ArgTyper\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Rector\\ArgTyper\\Tests\\": "tests"
},
"classmap": [
"tests/Rector/Rector/ClassMethod/AddClassMethodParamTypeRector/Fixture"
],
"files": [
"tests/PHPStan/CollectFuncCallArgTypesRule/Source/some_function.php"
]
},
"config": {
"sort-packages": true,
"platform-check": false,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-intl-normalizer": "*",
"symfony/polyfill-mbstring": "*"
},
"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 --dry-run --ansi"
}
}