composer.json 761 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "chillerlan/php-qrcode",
  3. "description": "A QR code generator. PHP 5.6+",
  4. "homepage": "https://github.com/chillerlan/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. "homepage": "https://github.com/codemasher"
  19. }
  20. ],
  21. "require": {
  22. "php": ">=5.6.0"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "^5.7"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "chillerlan\\QRCode\\": "src/"
  30. }
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "chillerlan\\QRCodePublic\\": "public/",
  35. "chillerlan\\QRCodeTest\\": "tests/",
  36. "chillerlan\\QRCodeExamples\\": "examples/"
  37. }
  38. }
  39. }