composer.json 723 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "chartmancer/chartmancer",
  3. "description": "Automates the generation of graphs based on dataset provided in an array",
  4. "type": "library",
  5. "license": "MIT",
  6. "keywords": [
  7. "chart",
  8. "graph"
  9. ],
  10. "require": {
  11. "php": ">=5.3.28",
  12. "ext-gd": "*",
  13. "ext-mbstring": "*"
  14. },
  15. "autoload": {
  16. "psr-4": {
  17. "chartmancer\\": "src"
  18. },
  19. "files": [
  20. "src/api.chartmancer.php"
  21. ]
  22. },
  23. "authors": [
  24. {
  25. "name": "Rostyslav Haitkulov",
  26. "email": "info@ubilling.net.ua",
  27. "homepage": "https://github.com/nightflyza"
  28. }
  29. ],
  30. "minimum-stability": "dev"
  31. }