composer.json 713 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. "chillerlan/php-googleauth": "1.1.*",
  25. "phpunit/phpunit": "6.4.*"
  26. },
  27. "suggest": {
  28. "chillerlan/php-googleauth": "*"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "chillerlan\\QRCode\\": "src/"
  33. }
  34. },
  35. "autoload-dev": {
  36. "psr-4": {
  37. "chillerlan\\QRCodeTest\\": "tests/"
  38. }
  39. }
  40. }