-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 1.03 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
{
"name": "hexlet/code",
"description": "level 2 hexlet project",
"type": "project",
"license": "MIT",
"bin": [
"bin/gendiff"
],
"authors": [
{
"name": "Evgenij Goldin",
"email": "[email protected]"
}
],
"require": {
"docopt/docopt": "^1.0",
"symfony/yaml": "^5.3",
"lstrojny/functional-php": "^1.17"
},
"autoload": {
"files": [
"src/Differ.php",
"src/Formatter.php",
"src/Parser.php",
"src/Formatters/Json.php",
"src/Formatters/Plain.php",
"src/Formatters/Stylish.php"
]
},
"require-dev": {
"phpstan/phpstan": "1.2.0",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan-phpunit": "^1.0.0",
"phpstan/extension-installer": "^1.0",
"squizlabs/php_codesniffer": "^3.5.5",
"friendsofphp/php-cs-fixer": "^3.8.0"
},
"config": {
"platform": {
"php": "8.1.4"
}
}
}