-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.27 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "tolyod/php-project-lvl2",
"bin": [
"bin/gendiff"
],
"description": "Apoloz simple diff generator",
"type": "project",
"config": {
"platform": {
"php" : "7.4"
}
},
"license": "BSD",
"authors": [
{
"name": "Anatoliy Poloz",
"email": "anatoliy.poloz@gmail.com"
}
],
"keywords": [
"cli",
"diff",
"simple",
"yml",
"ini",
"json",
"hexlet"
],
"scripts" : {
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"phpunit": "phpunit",
"test": "phpunit tests"
},
"autoload": {
"files": [
"src/Cli.php",
"src/Differ.php",
"src/Parsers.php",
"src/Ast.php",
"src/Render.php",
"src/Formatters/Plain.php",
"src/Formatters/Pretty.php",
"src/Formatters/Json.php"
],
"psr-4": {
"Differ\\": "src"
}
},
"require": {
"docopt/docopt": "^1.0",
"funct/funct": "^1.5",
"symfony/yaml": "^5.0",
"tightenco/collect": "^7.3"
},
"require-dev": {
"squizlabs/php_codesniffer" : "*",
"phpunit/phpunit": "^8.5",
"psy/psysh": "@stable"
}
}