-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 904 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
{
"name": "hexlet/code",
"autoload": {
"files": [
"src/Differ.php",
"src/MakerAST.php",
"src/Formatter.php",
"src/Parser.php",
"src/Formatters/Stylish.php",
"src/Formatters/Plain.php",
"src/Formatters/Json.php"
]
},
"license": "MIT",
"authors": [
{
"name": "Konstantin Glebov",
"email": "[email protected]"
}
],
"bin": ["bin/gendiff"],
"description": "hexlet php-project 2",
"require": {
"docopt/docopt": "^1.0",
"symfony/yaml": "^5.4",
"symfony/console": "^6.0",
"lstrojny/functional-php": "^1.17"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.8",
"squizlabs/php_codesniffer": "^3.7.1"
}
}