composer.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. "support": {
  36. "docs": "https://chillerlan.github.io/php-qrcode",
  37. "issues": "https://github.com/chillerlan/php-qrcode/issues",
  38. "source": "https://github.com/chillerlan/php-qrcode",
  39. "wiki": "https://github.com/chillerlan/php-qrcode/wiki"
  40. },
  41. "minimum-stability": "stable",
  42. "prefer-stable": true,
  43. "require": {
  44. "php": "^7.4 || ^8.0",
  45. "ext-mbstring": "*",
  46. "chillerlan/php-settings-container": "^2.1.4 || ^3.0"
  47. },
  48. "require-dev": {
  49. "phan/phan": "^5.4",
  50. "phpunit/phpunit": "^9.6",
  51. "phpmd/phpmd": "^2.13",
  52. "setasign/fpdf": "^1.8.2",
  53. "squizlabs/php_codesniffer": "^3.7"
  54. },
  55. "suggest": {
  56. "chillerlan/php-authenticator": "Yet another Google authenticator! Also creates URIs for mobile apps.",
  57. "setasign/fpdf": "Required to use the QR FPDF output.",
  58. "simple-icons/simple-icons": "SVG icons that you can use to embed as logos in the QR Code"
  59. },
  60. "autoload": {
  61. "psr-4": {
  62. "chillerlan\\QRCode\\": "src/"
  63. }
  64. },
  65. "autoload-dev": {
  66. "psr-4": {
  67. "chillerlan\\QRCodeTest\\": "tests/"
  68. }
  69. },
  70. "scripts": {
  71. "phpunit": "@php vendor/bin/phpunit",
  72. "phan": "@php vendor/bin/phan"
  73. },
  74. "config": {
  75. "lock": false,
  76. "sort-packages": true,
  77. "platform-check": true
  78. }
  79. }