-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.4 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
{
"name": "savinmikhail/add_named_arguments_rector",
"description": "Rector rule to add names to arguments for functions'/methods' calls",
"license": "MIT",
"type": "rector-extension",
"keywords": [
"static analysis",
"dev"
],
"authors": [
{
"name": "Savin Mikhail",
"email": "mikhail.d.savin@gmail.com"
}
],
"require": {
"php": ">=8.2",
"nikic/php-parser": "^4.15 || ^5.1",
"phpstan/phpstan": "^2.1.1",
"rector/rector": "^2.0.0",
"symplify/rule-doc-generator-contracts": "^11.2"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.45",
"friendsofphp/php-cs-fixer": "^3.62",
"icanhazstring/composer-unused": "^0.8.11",
"maglnet/composer-require-checker": "^4.14",
"phpunit/phpunit": "^10.5",
"phpyh/coding-standard": "^2.6.1"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"SavinMikhail\\AddNamedArgumentsRector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SavinMikhail\\Tests\\AddNamedArgumentsRector\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.2"
},
"sort-packages": true
}
}