-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 972 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
36
37
38
39
40
41
{
"name": "hexlet/code",
"description": "hexlet-code",
"authors": [
{
"name": "Anastasia Smolyakova",
"email": "[email protected]"
}
],
"license": "MIT",
"scripts": {
"test": "phpunit tests"
},
"bin": [
"bin/gendiff"
],
"autoload": {
"psr-4": {
"Hexlet\\Code\\Tests\\": "tests/"
},
"files": [
"src/Differ.php",
"src/Parsers.php",
"src/Formatters.php",
"src/Formatters/Stylish.php",
"src/Formatters/Plain.php",
"src/Formatters/Json.php",
"tests/DifferTest.php"
]
},
"require": {
"docopt/docopt": "^1.0",
"lstrojny/functional-php": "^1.17",
"symfony/yaml": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "^10",
"squizlabs/php_codesniffer": "^3.7",
"phpstan/phpstan": "^1.10"
}
}