-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
composer.json
40 lines (40 loc) · 1.03 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
{
"name": "graphp/graph",
"type": "library",
"description": "GraPHP is the mathematical graph/network library written in PHP.",
"keywords": [
"graph",
"network",
"mathematical",
"vertex",
"edge"
],
"homepage": "https://github.com/graphp/graph",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
},
"suggest": {
"graphp/graphviz": "GraphViz graph drawing / DOT output",
"graphp/algorithms": "Common graph algorithms, such as Dijkstra and Moore-Bellman-Ford (shortest path), minimum spanning tree (MST), Kruskal, Prim and many more.."
},
"autoload": {
"psr-4": {
"Graphp\\Graph\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Graphp\\Graph\\Tests\\": "tests/"
}
}
}