-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 976 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
39
40
41
{
"name": "dzencot/gendiff",
"type": "project",
"scripts": {
"phpcs": "phpcs",
"phpunit": "phpunit"
},
"bin": [
"bin/gendiff"
],
"autoload": {
"files": [
"src/Differ.php",
"src/Parser.php",
"src/GetDiff.php",
"src/Formatter/Formatter.php",
"src/Formatter/Pretty.php",
"src/Formatter/Plain.php",
"src/Formatter/Json.php"
]
},
"require": {
"docopt/docopt": "^1.0",
"wp-cli/php-cli-tools": "^0.11.11",
"symfony/yaml": "^5.0",
"funct/funct": "^1.5"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpunit/phpunit": "^8.5"
},
"authors": [
{
"name": "Ivan Gagarinov",
"email": "[email protected]"
}
],
"keywords": ["hexlet", "brain-games"],
"description": "Generate diff",
"license": "MIT"
}