composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "szymach/c-pchart",
  3. "license": "GPL-3.0",
  4. "type": "project",
  5. "description": "Port of \"pChart\" library into PHP 5",
  6. "keywords": ["pchart", "pChart", "statistics", "charts", "CpChart", "c-pChart"],
  7. "homepage": "https://github.com/szymach/c-pchart",
  8. "authors": [
  9. {
  10. "name": "Jean-Damien Pogolotti",
  11. "homepage": "http://www.pchart.net",
  12. "role": "Creator of the original pChart library"
  13. },
  14. {
  15. "name": "Piotr Szymaszek",
  16. "homepage": "https://github.com/szymach",
  17. "role": "Developer of the CpChart wrapper package"
  18. }
  19. ],
  20. "autoload": {
  21. "psr-4": { "CpChart\\": "src/" },
  22. "files": ["constants.php"]
  23. },
  24. "autoload-dev": {
  25. "psr-4": { "Test\\CpChart\\": "tests/" }
  26. },
  27. "require": {
  28. "php": ">=5.4",
  29. "ext-gd": "*"
  30. },
  31. "require-dev" : {
  32. "codeception/codeception": "^2.3",
  33. "phpunit/phpunit": "^4.8|6.1",
  34. "squizlabs/php_codesniffer": "^2.8|3.0"
  35. },
  36. "config": {
  37. "bin-dir": "bin"
  38. },
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "3.0.x-dev",
  42. "2.0": "2.0.x-dev"
  43. }
  44. }
  45. }