composer.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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",
  7. "Apache-2.0"
  8. ],
  9. "minimum-stability": "stable",
  10. "type": "library",
  11. "keywords": [
  12. "QR code", "qrcode", "qr", "qrcode-generator", "phpqrcode", "qrcode-reader", "qr-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. "ext-fileinfo": "*",
  41. "chillerlan/php-settings-container": "^2.1.4"
  42. },
  43. "require-dev": {
  44. "phan/phan": "^5.4",
  45. "phpunit/phpunit": "^9.6",
  46. "phpmd/phpmd": "^2.13",
  47. "setasign/fpdf": "^1.8.2",
  48. "squizlabs/php_codesniffer": "^3.7"
  49. },
  50. "suggest": {
  51. "chillerlan/php-authenticator": "Yet another Google authenticator! Also creates URIs for mobile apps.",
  52. "setasign/fpdf": "Required to use the QR FPDF output.",
  53. "simple-icons/simple-icons": "SVG icons that you can use to embed as logos in the QR Code"
  54. },
  55. "autoload": {
  56. "psr-4": {
  57. "chillerlan\\QRCode\\": "src/"
  58. }
  59. },
  60. "autoload-dev": {
  61. "psr-4": {
  62. "chillerlan\\QRCodeTest\\": "tests/"
  63. }
  64. },
  65. "scripts": {
  66. "phpunit": "@php vendor/bin/phpunit",
  67. "phan": "@php vendor/bin/phan"
  68. },
  69. "config": {
  70. "lock": false,
  71. "sort-packages": true,
  72. "platform-check": true
  73. }
  74. }