composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "chillerlan/php-qrcode",
  3. "description": "A QR code generator. PHP 7.4+",
  4. "homepage": "https://github.com/chillerlan/php-qrcode",
  5. "license": "MIT",
  6. "minimum-stability": "stable",
  7. "type": "library",
  8. "keywords": [
  9. "QR code", "qrcode", "qr", "qrcode-generator", "phpqrcode"
  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. "name": "Contributors",
  23. "homepage":"https://github.com/chillerlan/php-qrcode/graphs/contributors"
  24. }
  25. ],
  26. "require": {
  27. "php": "^7.4",
  28. "ext-mbstring": "*",
  29. "chillerlan/php-settings-container": "^2.0"
  30. },
  31. "require-dev": {
  32. "phpunit/phpunit": "^9.1",
  33. "phan/phan": "^2.7",
  34. "setasign/fpdf": "^1.8.2"
  35. },
  36. "suggest": {
  37. "chillerlan/php-authenticator": "Yet another Google authenticator! Also creates URIs for mobile apps.",
  38. "setasign/fpdf": "Required to use the QR FPDF output."
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "chillerlan\\QRCode\\": "src/"
  43. }
  44. },
  45. "autoload-dev": {
  46. "psr-4": {
  47. "chillerlan\\QRCodePublic\\": "public/",
  48. "chillerlan\\QRCodeTest\\": "tests/",
  49. "chillerlan\\QRCodeExamples\\": "examples/"
  50. }
  51. }
  52. }