-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 881 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "hexlet/code",
"bin": [
"bin/gendiff"
],
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Vladimir Kaimonov",
"email": "kaivladimirv@gmail.com"
}
],
"description": "Console program 'Difference Calculator' that determines the difference between two data structures.",
"autoload": {
"files": [
"src/DocReader.php",
"src/Parsers.php",
"src/ArraysDiffer.php",
"src/Formatters.php",
"src/Formatters/Stylish.php",
"src/Formatters/Plain.php",
"src/Formatters/Json.php",
"src/Differ.php"
]
},
"require": {
"php": ">=8.0.1",
"docopt/docopt": "^1.0",
"wp-cli/php-cli-tools": "^0.11.16",
"symfony/yaml": "^6.0",
"lstrojny/functional-php": "^1.17"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"phpunit/phpunit": "^9.5"
}
}