composer.json 1.8 KB

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