-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 899 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
{
"name": "hexlet/code",
"description": "Second project hexlet-php",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"Hexlet\\Code\\": "src/"
},
"files": [
"src/Differ.php",
"src/Parser.php",
"src/Formatter.php",
"src/Formatters/Json.php",
"src/Formatters/Stylish.php",
"src/Formatters/Plain.php",
"tests/DiffTest.php"
]
},
"authors": [
{
"name": "artosepyan",
"email": "artyomosepyan@mail.ru"
}
],
"bin": [
"bin/gendiff"
],
"require": {
"docopt/docopt": "^1.0",
"symfony/yaml": "^7.1",
"lstrojny/functional-php": "^1.17"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.10",
"phpunit/phpunit": "^11.2"
}
}