composer.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "chillerlan/php-qrcode",
  3. "description": "A QR Code generator and reader with a user-friendly API. PHP 8.2+",
  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": "^8.2",
  50. "ext-mbstring": "*",
  51. "chillerlan/php-settings-container": "^3.2"
  52. },
  53. "require-dev": {
  54. "chillerlan/php-authenticator": "^5.1",
  55. "phpbench/phpbench": "^1.2.15",
  56. "phan/phan": "^5.4",
  57. "phpunit/phpunit": "^11.0",
  58. "phpmd/phpmd": "^2.15",
  59. "setasign/fpdf": "^1.8.2",
  60. "squizlabs/php_codesniffer": "^3.9"
  61. },
  62. "suggest": {
  63. "chillerlan/php-authenticator": "Yet another Google authenticator! Also creates URIs for mobile apps.",
  64. "setasign/fpdf": "Required to use the QR FPDF output.",
  65. "simple-icons/simple-icons": "SVG icons that you can use to embed as logos in the QR Code"
  66. },
  67. "autoload": {
  68. "psr-4": {
  69. "chillerlan\\QRCode\\": "src/"
  70. }
  71. },
  72. "autoload-dev": {
  73. "psr-4": {
  74. "chillerlan\\QRCodeBenchmark\\": "benchmark/",
  75. "chillerlan\\QRCodeTest\\": "tests/"
  76. }
  77. },
  78. "scripts": {
  79. "phan": "@php vendor/bin/phan",
  80. "phpcs": "@php vendor/bin/phpcs",
  81. "phpbench":[
  82. "Composer\\Config::disableProcessTimeout",
  83. "@php vendor/bin/phpbench run"
  84. ],
  85. "phpunit": "@php vendor/bin/phpunit"
  86. },
  87. "config": {
  88. "lock": false,
  89. "sort-packages": true,
  90. "platform-check": true
  91. }
  92. }