24 lines
700 B
JSON
24 lines
700 B
JSON
{
|
|
"name": "graphp/algorithms",
|
|
"description": "Common mathematical graph algorithms implemented in PHP",
|
|
"keywords": ["Graph algorithms", "shortest path", "dijkstra", "moore-bellman-ford", "minimum spanning tree", "kruskal", "prim"],
|
|
"homepage": "https://github.com/graphp/algorithms",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Christian Lück",
|
|
"email": "christian@clue.engineering"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.3",
|
|
"clue/graph": "~0.9.0|~0.8.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^6.4 || ^5.7 || ^4.8.35"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {"Graphp\\Algorithms\\": "src/"}
|
|
}
|
|
}
|