composer.json 811 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. "chillerlan/php-traits": "1.1.*",
  23. "chillerlan/php-authenticator": ">=2.0.0"
  24. },
  25. "require-dev": {
  26. "phpunit/phpunit": "6.5.*"
  27. },
  28. "suggest": {
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "chillerlan\\QRCode\\": "src/"
  33. }
  34. },
  35. "autoload-dev": {
  36. "psr-4": {
  37. "chillerlan\\QRCodePublic\\": "public/",
  38. "chillerlan\\QRCodeTest\\": "tests/",
  39. "chillerlan\\QRCodeExamples\\": "examples/"
  40. }
  41. }
  42. }