JuliaStrelkova/project-lvl2-s427

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
  "name": "juliastrelkova/project-lvl2-s427",
  "type": "library",
  "description": "My version of Hexlet gendiff project",
  "authors": [
    {
      "name": "Julia Strelkova",
      "email": "strelkovajuli@gmail.com"
    }
  ],
  "require": {
    "php": "^7.1",
    "ext-json": "*",
    "docopt/docopt": "^1.0",
    "symfony/yaml": "^4.2"
  },
  "require-dev": {
    "squizlabs/php_codesniffer": "^3.2",
    "phpunit/phpunit": "^7.0"
  },
  "scripts": {
    "phpcs": "phpcs",
    "phpcbf": "phpcbf",
    "phpunit": "phpunit",
    "test": "phpunit tests"
  },
  "bin": [
    "bin/gendiff"
  ],
  "autoload": {
    "psr-4": {
      "Gendiff\\": "src"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "Gendiff\\": "tests"
    }
  },
  "config": {
    "bin-dir": "vendor/bin"
  }
}