-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.11 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.11 KB
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
{
"name": "hexlet/code",
"bin": [
"bin/gendiff"
],
"autoload": {
"files": [
"src/Differ.php",
"src/Parsers.php",
"src/Formatters.php",
"src/Formatters/Json.php",
"src/Formatters/Plain.php",
"src/Formatters/Stylish.php"
],
"psr-4": {
"Differ\\Tests\\": "tests",
"Differ\\": "src"
}
},
"description": "Generate diff",
"type": "project",
"authors": [
{
"name": "yulia633,",
"email": "ignat633yulia@yandex.ru"
}
],
"minimum-stability": "stable",
"scripts": {
"phpcs": "phpcs",
"phpunit": "phpunit"
},
"require": {
"php": ">=7.4.3",
"docopt/docopt": "^1.0",
"symfony/yaml": "^5.2",
"funct/funct": "^1.5",
"phpstan/extension-installer": "^1.1.0",
"phpstan/phpstan": "^0.12.70"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpunit/phpunit": "^9",
"hexlet/phpstan-fp": "^1.1"
},
"license": "MIT"
}