composer.json 886 B

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