-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 906 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
42
43
{
"name": "vhood/graph",
"description": "php graph objects and features",
"version": "0.0.1",
"keywords": [
"array",
"tree",
"graph",
"hash table",
"adjacency list",
"materialized path",
"nested set"
],
"support": {
"email": "dev.999.victor@gmail.com",
"issues": "https://github.com/vhood/php-graph/issues"
},
"type": "library",
"license": "BSD-2-Clause",
"autoload": {
"psr-4": {
"Vhood\\Graph\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"authors": [
{
"name": "Viktor Khramov",
"email": "dev.999.victor@gmail.com"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5"
}
}