composer.json 703B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "mike42/gfx-php",
  3. "description": "The pure PHP graphics library",
  4. "homepage": "https://github.com/mike42/gfx-php",
  5. "type": "library",
  6. "license": "LGPL-2.1-or-later",
  7. "authors": [
  8. {
  9. "name": "Michael Billington",
  10. "email": "michael.billington@gmail.com"
  11. }
  12. ],
  13. "config": {
  14. "platform": {
  15. "php": "7.0.0"
  16. }
  17. },
  18. "require": {
  19. "php": ">=7.0.0"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "Mike42\\": "src/Mike42"
  24. }
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^6.5",
  28. "squizlabs/php_codesniffer": "^3.3.1",
  29. "phpbench/phpbench": "@dev"
  30. }
  31. }