composer.json 654 B

1234567891011121314151617181920212223
  1. {
  2. "name": "graphp/algorithms",
  3. "description": "Common mathematical graph algorithms",
  4. "keywords": ["Graph algorithms", "shortest path", "dijkstra", "moore-bellman-ford", "minimum spanning tree", "kruskal", "prim"],
  5. "homepage": "https://github.com/graphp/algorithms",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Christian Lück",
  10. "email": "christian@lueck.tv"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=5.3",
  15. "clue/graph": "~0.9.0|~0.8.0"
  16. },
  17. "require-dev": {
  18. "phpunit/phpunit": "~4.0"
  19. },
  20. "autoload": {
  21. "psr-4": {"Graphp\\Algorithms\\": "src/"}
  22. }
  23. }