-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.06 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": "My 2 project on Hexlet - Gendiff",
"type": "library",
"license": "MIT",
"autoload": {
"files": [
"src/Differ.php",
"src/Parsers.php",
"src/Formatters.php",
"src/Formatters/Stylish.php",
"src/Formatters/Plain.php",
"src/Formatters/Json.php"
]
},
"authors": [
{
"name": "RasmuS2024",
"email": "[email protected]"
}
],
"require": {
"docopt/docopt": "^1.0",
"symfony/yaml": "^6.0",
"lstrojny/functional-php": "^1.17"
},
"bin": [
"bin/gendiff"
],
"require-dev": {
"phpunit/phpunit": "10.0",
"squizlabs/php_codesniffer": "^3.10",
"phpstan/phpstan": "1.10.24",
"phpstan/extension-installer": "1.4.3",
"phpstan/phpstan-strict-rules": "^1.5",
"hexlet/phpstan-fp": "^2.0"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}