-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 878 Bytes
/
composer.json
File metadata and controls
49 lines (49 loc) · 878 Bytes
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
42
43
44
45
46
47
48
49
{
"name": "hexlet/code",
"description": "Idn",
"keywords": [
"gendiff",
"cli",
"php",
"project",
"hexlet"
],
"autoload": {
"files": [
"src/GenDiff.php",
"src/Parsers.php",
"src/Diff.php",
"src/Formatters/Stylish.php",
"src/Formatters/Formatter.php",
"src/Formatters/Json.php",
"src/Formatters/Plain.php"
]
},
"authors": [
{
"name": "Gadel",
"email": "gadel.g@myhart.ru"
}
],
"license": [
"LGPL-2.1-only",
"GPL-3.0-or-later"
],
"require": {
"docopt/docopt": "^1.0",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "*",
"lstrojny/functional-php": "^1.17",
"symfony/yaml": "^5.3"
},
"bin": [
"bin/gendiff"
],
"scripts": {
"test": [
"@clearCache",
"phpunit"
],
"clearCache": "rm -rf cache/*"
}
}