caviarman/project-lvl2-s349

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "vilin/gendiff",
    "version": "0.6.2",
    "description": "cli programm for comparing json, yaml and ini files",
    "type": "library",
    "license": "MIT",
    "authors": [
        {
            "name": "Vladimir Ilin",
            "email": "mark09072010@gmail.com"
        }
    ],
    "keywords": [
        "gendiff",
        "cli programm",
        "json yaml ini"
    ],
    "bin": [
        "bin/gendiff"
    ],
    "autoload": {
        "psr-4": {
          "App\\": "src",
          "App\\Tests\\": "tests"
        },
        "files": [
            "src/Diff.php",
            "src/Parser.php",
            "src/Ast.php",
            "src/Renderers/Renderer.php",
            "src/Renderers/Pretty.php",
            "src/Renderers/Plain.php"
        ]
    },
    "scripts": {
        "phpcs": "phpcs",
        "phpcbf": "phpcbf",
        "phpunit": "phpunit",
        "test": "phpunit tests"
    },
    "require": {
        "docopt/docopt": "^1.0",
        "funct/funct": "^1.4",
        "symfony/yaml": "^4.1"
    },
    "require-dev": {
        "phpunit/phpunit": "*",
        "squizlabs/php_codesniffer": "*",
        "codeclimate/php-test-reporter": "dev-master"
      }

}