composer.json
{
"name": "hexlet/code",
"description": "a program that detects the difference between two data structures",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Konstantin Pukha",
"email": "kosta0683@mail.ru"
}
],
"minimum-stability": "stable",
"bin": [
"bin/gendiff"
],
"scripts": {
"phpcs": "phpcs",
"tests": "phpunit tests"
},
"autoload": {
"psr-4": {
"Differ\\Differ\\Tests\\": "tests"
},
"files": [
"src/Differ.php",
"src/Parsers.php",
"src/Formatters.php",
"src/formatters/Stylish.php",
"src/formatters/Plain.php",
"src/formatters/Json.php"
]
},
"require": {
"docopt/docopt": "^1.0",
"symfony/yaml": "^5.3",
"funct/funct": "^1.5"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6"
}
}