composer.json 547 B

12345678910111213141516171819
  1. {
  2. "name": "graphp/graphviz",
  3. "type": "library",
  4. "description": "GraphViz graph drawing for mathematical graph/network",
  5. "keywords": ["GraphViz", "graph drawing", "graph image", "dot output"],
  6. "homepage": "https://github.com/graphp/graphviz",
  7. "license": "MIT",
  8. "autoload": {
  9. "psr-4": {"Graphp\\GraphViz\\": "src/"}
  10. },
  11. "require": {
  12. "php": ">=5.3.0",
  13. "clue/graph": "~0.9.0|~0.8.0",
  14. "graphp/algorithms": "~0.8.0"
  15. },
  16. "require-dev": {
  17. "phpunit/phpunit": "~4.0"
  18. }
  19. }