composer.json 881 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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"
  24. },
  25. "require-dev": {
  26. "phpunit/phpunit": "6.4.*"
  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. "extra": {
  43. "branch-alias": {
  44. "dev-v2.0.x-php5": "1.0.8-dev"
  45. }
  46. }
  47. }