composer.json 714 B

123456789101112131415161718192021
  1. {
  2. "name": "clue/graph",
  3. "type": "library",
  4. "description": "A mathematical graph/network library written in PHP",
  5. "keywords": ["graph", "network", "mathematical", "vertex", "edge"],
  6. "homepage": "https://github.com/clue/graph",
  7. "license": "MIT",
  8. "autoload": {
  9. "psr-4": {"Fhaculty\\Graph\\": "src/"}
  10. },
  11. "require": {
  12. "php": ">=5.3.0"
  13. },
  14. "require-dev": {
  15. "phpunit/phpunit": "~4.0"
  16. },
  17. "suggest": {
  18. "graphp/graphviz": "GraphViz graph drawing / DOT output",
  19. "graphp/algorithms": "Common graph algorithms, such as Dijkstra and Moore-Bellman-Ford (shortest path), minimum spanning tree (MST), Kruskal, Prim and many more.."
  20. }
  21. }