| {
    "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"
    ]
}
 |