composer.json 673 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "chillerlan/php-qrcode",
  3. "description": "A QR code generator. PHP 7+",
  4. "homepage": "https://github.com/codemasher/php-qrcode",
  5. "license": "MIT",
  6. "type": "library",
  7. "keywords": [
  8. "QR code"
  9. ],
  10. "authors": [
  11. {
  12. "name": "Kazuhiko Arase",
  13. "homepage": "https://github.com/kazuhikoarase"
  14. },
  15. {
  16. "name": "Smiley",
  17. "email": "smiley@chillerlan.net"
  18. }
  19. ],
  20. "require": {
  21. "php": ">=7.0.3"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "6.0.*"
  25. },
  26. "suggest": {
  27. "chillerlan/php-googleauth": "*"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "chillerlan\\QRCode\\": "src/"
  32. }
  33. },
  34. "autoload-dev": {
  35. "psr-4": {
  36. "chillerlan\\QRCodeTest\\": "tests/"
  37. }
  38. }
  39. }