andreiyastrzhembski/project-lvl2-s409

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "andreiyastrzhembski/gendiff-hexlet",
    "description": "CLI tool",
    "keywords": ["tool","hexlet"],
    "type": "project",
    "authors": [
        {
            "name": "Andrei Yastrzhembski",
            "email": "andrei.yastrzhembski@gmail.com"
        }
    ],
    "bin": [
        "bin/gendiff"
    ],
    "scripts": {
        "phpcs": "phpcs",
        "phpunit": "phpunit",
        "test": "phpunit tests"
    },
    "autoload": {
        "psr-4": {
            "Gendiff\\": "src"
        },
        "files": [
            "src/Cli.php",
            "src/Differ.php",
            "src/Parser.php",
            "src/Render.php",
            "src/Renderers/RenderPretty.php",
            "src/Renderers/RenderPlain.php"
        ]
    },
    "require": {
        "wp-cli/php-cli-tools": "^0.11.11",
        "docopt/docopt": "^1.0",
        "symfony/yaml": "^4.2",
        "funct/funct": "^1.5"
    },
    "require-dev": {
        "squizlabs/php_codesniffer": "^3.4",
        "phpunit/phpunit": "^8.0"
    }
}