PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of DeGraciaMathieu   PHP Function Arguments Detector   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Function Arguments Detector
Detect complex functions with too many arguments
Author: By
Last change:
Date: 1 year ago
Size: 1,018 bytes
 

Contents

Class file image Download
{ "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": "dev@degracia-mathieu.fr" } ], "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" ] }