composer.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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\\QRCodeTest\\": "tests/",
  56. "chillerlan\\QRCodeExamples\\": "examples/"
  57. }
  58. },
  59. "scripts": {
  60. "phpunit": "@php vendor/bin/phpunit",
  61. "phan": "@php vendor/bin/phan"
  62. },
  63. "config": {
  64. "lock": false,
  65. "sort-packages": true,
  66. "platform-check": true
  67. }
  68. }