composer.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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", "qrcode-reader"
  10. ],
  11. "authors": [
  12. {
  13. "name": "Kazuhiko Arase",
  14. "homepage": "https://github.com/kazuhikoarase/qrcode-generator"
  15. },
  16. {
  17. "name":"ZXing Authors",
  18. "homepage": "https://github.com/zxing/zxing"
  19. },
  20. {
  21. "name": "Ashot Khanamiryan",
  22. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder"
  23. },
  24. {
  25. "name": "Smiley",
  26. "email": "smiley@chillerlan.net",
  27. "homepage": "https://github.com/codemasher"
  28. },
  29. {
  30. "name": "Contributors",
  31. "homepage":"https://github.com/chillerlan/php-qrcode/graphs/contributors"
  32. }
  33. ],
  34. "require": {
  35. "php": "^7.4 || ^8.0",
  36. "ext-mbstring": "*",
  37. "chillerlan/php-settings-container": "^2.1"
  38. },
  39. "require-dev": {
  40. "phpunit/phpunit": "^9.5",
  41. "phan/phan": "^5.3",
  42. "setasign/fpdf": "^1.8.2"
  43. },
  44. "suggest": {
  45. "chillerlan/php-authenticator": "Yet another Google authenticator! Also creates URIs for mobile apps.",
  46. "setasign/fpdf": "Required to use the QR FPDF output."
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "chillerlan\\QRCode\\": "src/"
  51. }
  52. },
  53. "autoload-dev": {
  54. "psr-4": {
  55. "chillerlan\\QRCodePublic\\": "public/",
  56. "chillerlan\\QRCodeTest\\": "tests/",
  57. "chillerlan\\QRCodeExamples\\": "examples/"
  58. }
  59. },
  60. "scripts": {
  61. "phpunit": "@php vendor/bin/phpunit",
  62. "phan": "@php vendor/bin/phan"
  63. },
  64. "config": {
  65. "lock": false,
  66. "sort-packages": true,
  67. "platform-check": true
  68. }
  69. }