composer.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {
  2. "name": "chillerlan/php-qrcode",
  3. "description": "A QR Code generator and reader with a user-friendly API. PHP 7.4+",
  4. "homepage": "https://github.com/chillerlan/php-qrcode",
  5. "license": [
  6. "MIT", "Apache-2.0"
  7. ],
  8. "type": "library",
  9. "keywords": [
  10. "QR code", "qrcode", "qr", "qrcode-generator", "phpqrcode", "qrcode-reader", "qr-reader"
  11. ],
  12. "authors": [
  13. {
  14. "name": "Kazuhiko Arase",
  15. "homepage": "https://github.com/kazuhikoarase/qrcode-generator"
  16. },
  17. {
  18. "name":"ZXing Authors",
  19. "homepage": "https://github.com/zxing/zxing"
  20. },
  21. {
  22. "name": "Ashot Khanamiryan",
  23. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder"
  24. },
  25. {
  26. "name": "Smiley",
  27. "email": "smiley@chillerlan.net",
  28. "homepage": "https://github.com/codemasher"
  29. },
  30. {
  31. "name": "Contributors",
  32. "homepage":"https://github.com/chillerlan/php-qrcode/graphs/contributors"
  33. }
  34. ],
  35. "funding": [
  36. {
  37. "type": "Ko-Fi",
  38. "url": "https://ko-fi.com/codemasher"
  39. }
  40. ],
  41. "support": {
  42. "docs": "https://php-qrcode.readthedocs.io",
  43. "issues": "https://github.com/chillerlan/php-qrcode/issues",
  44. "source": "https://github.com/chillerlan/php-qrcode"
  45. },
  46. "minimum-stability": "stable",
  47. "prefer-stable": true,
  48. "require": {
  49. "php": "^7.4 || ^8.0",
  50. "ext-mbstring": "*",
  51. "chillerlan/php-settings-container": "^2.1.6 || ^3.2.1"
  52. },
  53. "require-dev": {
  54. "ext-fileinfo": "*",
  55. "chillerlan/php-authenticator": "^4.3.1 || ^5.2.1",
  56. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  57. "phan/phan": "^5.4.5",
  58. "phpcompatibility/php-compatibility": "10.x-dev",
  59. "phpunit/phpunit": "^9.6",
  60. "phpmd/phpmd": "^2.15",
  61. "setasign/fpdf": "^1.8.2",
  62. "slevomat/coding-standard": "^8.15",
  63. "squizlabs/php_codesniffer": "^3.10"
  64. },
  65. "suggest": {
  66. "chillerlan/php-authenticator": "Yet another Google authenticator! Also creates URIs for mobile apps.",
  67. "setasign/fpdf": "Required to use the QR FPDF output.",
  68. "simple-icons/simple-icons": "SVG icons that you can use to embed as logos in the QR Code"
  69. },
  70. "autoload": {
  71. "psr-4": {
  72. "chillerlan\\QRCode\\": "src"
  73. }
  74. },
  75. "autoload-dev": {
  76. "psr-4": {
  77. "chillerlan\\QRCodeTest\\": "tests"
  78. }
  79. },
  80. "scripts": {
  81. "phan": "@php vendor/bin/phan",
  82. "phpcs": "@php vendor/bin/phpcs",
  83. "phpunit": "@php vendor/bin/phpunit"
  84. },
  85. "config": {
  86. "lock": false,
  87. "sort-packages": true,
  88. "platform-check": true,
  89. "allow-plugins": {
  90. "dealerdirect/phpcodesniffer-composer-installer": true
  91. }
  92. }
  93. }