-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.24 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
44
45
46
47
48
49
50
51
52
{
"name": "vinogradsoft/scanner",
"description": "Vinograd is a powerful library for processing hierarchical data. It provides an intuitive API for traversing trees in breadth-first and depth-first orders. Developers can also implement their own visitor patterns to process specific nodes or leaves. ",
"license": "MIT",
"keywords": [
"Vinograd Scanner",
"Btree scanner",
"Data scanner",
"Tree scanner",
"Breadth first scanner",
"Depth first scanner"
],
"authors": [
{
"name": "Grigor",
"email": "cmk.cmyk@mail.ru",
"role": "Founder and project lead"
}
],
"version": "2.0.0",
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Vinograd\\Scanner\\": [
"src/"
]
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
},
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"overtrue/phplint": "^2.0"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"scripts": {
"lint": "phplint",
"tests": "php ./vendor/bin/phpunit --colors=always tests",
"coverage": "XDEBUG_MODE=coverage phpunit --colors=always --coverage-html tests/coverage"
}
}