-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 998 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": "kudaiberdy/node_diff_generator",
"description": "this package defines the difference between two files json, yaml format",
"type": "project",
"license": "proprietary",
"authors": [
{
"name": "Kudaiberdy",
"email": "kudaiberdy.shagirov@gmail.com"
}
],
"autoload": {
"files": [
"src/CLi.php",
"src/Runner.php",
"src/DiffCalculator.php",
"src/Parser.php",
"src/DiffBuilder.php",
"src/Formatters/Json.php",
"src/Formatters/Stylish.php",
"src/Formatters/Plain.php"
]
},
"bin": [
"bin/gendiff"
],
"require": {
"tightenco/collect": "^9.16",
"symfony/yaml": "^6.1",
"docopt/docopt": "^1.0"
},
"require-dev": {
"php": ">=7.4",
"symfony/var-dumper": "^6.1",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7"
}
}