lev0607/php-project-lvl2

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "lev/php-project-lvl2",
    "bin": [
        "bin/gendiff"
    ],
    "type": "project",
    "description": "Second php project on hexlet.io.",
    "license": "MIT",
    "authors": [
        {
            "name": "lev0607",
            "email": "lev36rus@gmail.com"
        }
    ],
    "autoload": {
        "files": [
            "src/genDiff.php",
            "src/parsers.php",
            "src/renderer.php",
            "src/formatters/formatPretty.php",
            "src/formatters/formatPlain.php",
            "src/formatters/formatJson.php",
            "src/buildDiff.php"
        ]
    },
    "require": {
        "docopt/docopt": "^1.0",
        "funct/funct": "^1.5",
        "symfony/yaml": "^5.0"
    },
    "scripts": {
        "phpunit": "phpunit",
        "test": "phpunit tests",
        "phpcs": "phpcs"
    },
    "require-dev": {
        "phpunit/phpunit": "^8.5",
        "squizlabs/php_codesniffer": "^3.5"
    }
}