AlexeyShobanov/php-project-lvl2

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "alshad/gendiff",
    "description": "The second project in the profession of PHP training platform Hexlet",
    "type": "project",
    "license": "MIT",
    "authors": [
        {
            "name": "Alexey Shobanov",
            "email": "shobanov@gmail.com"
        }
    ],
    "bin": [
        "bin/gendiff"
    ],
    "scripts": {
        "phpcs": "phpcs",
        "phpunit": "phpunit"
    },
    "autoload": {
        "files": [
            "src/Parsers.php",
            "src/Compare.php",
            "src/Render.php",
            "src/formatters/Pretty.php",
            "src/formatters/Plain.php",
            "src/formatters/Json.php",
            "src/Differ.php"
        ],
        "psr-4": {
        }
    },
    "require": {
        "docopt/docopt": "^1.0",
        "symfony/yaml": "^5.0",
        "funct/funct": "^1.5"
    },
    "require-dev": {
        "squizlabs/php_codesniffer": "*",
        "phpunit/phpunit": "^8.5"
    }
}