composer.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. "intervention/image": "^3.5",
  56. "phpbench/phpbench": "^1.2.15",
  57. "phan/phan": "^5.4",
  58. "phpunit/phpunit": "^11.0",
  59. "phpmd/phpmd": "^2.15",
  60. "setasign/fpdf": "^1.8.2",
  61. "squizlabs/php_codesniffer": "^3.9"
  62. },
  63. "suggest": {
  64. "chillerlan/php-authenticator": "Yet another Google authenticator! Also creates URIs for mobile apps.",
  65. "intervention/image": "More advanced GD and ImageMagick output.",
  66. "setasign/fpdf": "Required to use the QR FPDF output.",
  67. "simple-icons/simple-icons": "SVG icons that you can use to embed as logos in the QR Code"
  68. },
  69. "autoload": {
  70. "psr-4": {
  71. "chillerlan\\QRCode\\": "src/"
  72. }
  73. },
  74. "autoload-dev": {
  75. "psr-4": {
  76. "chillerlan\\QRCodeBenchmark\\": "benchmark/",
  77. "chillerlan\\QRCodeTest\\": "tests/"
  78. }
  79. },
  80. "scripts": {
  81. "phan": "@php vendor/bin/phan",
  82. "phpcs": "@php vendor/bin/phpcs",
  83. "phpbench":[
  84. "Composer\\Config::disableProcessTimeout",
  85. "@php vendor/bin/phpbench run"
  86. ],
  87. "phpunit": "@php vendor/bin/phpunit"
  88. },
  89. "config": {
  90. "lock": false,
  91. "sort-packages": true,
  92. "platform-check": true
  93. }
  94. }