composer.json 1.7 KB

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