composer.json 551 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "chillerlan/php-qrcode",
  3. "description": "A QR code generator. PHP 5.6+, 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": ">=5.6.0"
  22. },
  23. "suggest": {
  24. "chillerlan/php-googleauth": "*"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "chillerlan\\QRCode\\": "src/"
  29. }
  30. }
  31. }