-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
36 lines (36 loc) · 1018 Bytes
/
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
{
"name": "degraciamathieu/php-arguments-detector",
"type": "package",
"description": "Keep control over the complexity of your methods by checking that they do not have too many arguments.",
"homepage": "https://github.com/DeGraciaMathieu/php-arguments-detector",
"license": "MIT",
"authors": [
{
"name": "De Gracia Mathieu",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^7.4 || ^8.0",
"symfony/console": "^4.4 || ^5.0 || ^6.0",
"symfony/finder": "^4.4 || ^5.0 || ^6.0",
"nikic/php-parser": "^4.13"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^5.1|^6.1"
},
"autoload": {
"psr-4": {
"DeGraciaMathieu\\PhpArgsDetector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DeGraciaMathieu\\PhpArgsDetector\\Tests\\": "tests/"
}
},
"bin": [
"phpargsdetector"
]
}