composer.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. {
  2. "$schema": "https://getcomposer.org/schema.json",
  3. "name": "chillerlan/php-qrcode",
  4. "description": "A QR Code generator and reader with a user-friendly API. PHP 8.2+",
  5. "homepage": "https://github.com/chillerlan/php-qrcode",
  6. "license": [
  7. "MIT", "Apache-2.0"
  8. ],
  9. "type": "library",
  10. "keywords": [
  11. "QR code", "qrcode", "qr", "qrcode-generator", "phpqrcode", "qrcode-reader", "qr-reader"
  12. ],
  13. "authors": [
  14. {
  15. "name": "Kazuhiko Arase",
  16. "homepage": "https://github.com/kazuhikoarase/qrcode-generator"
  17. },
  18. {
  19. "name":"ZXing Authors",
  20. "homepage": "https://github.com/zxing/zxing"
  21. },
  22. {
  23. "name": "Ashot Khanamiryan",
  24. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder"
  25. },
  26. {
  27. "name": "Smiley",
  28. "email": "smiley@chillerlan.net",
  29. "homepage": "https://github.com/codemasher"
  30. },
  31. {
  32. "name": "Contributors",
  33. "homepage":"https://github.com/chillerlan/php-qrcode/graphs/contributors"
  34. }
  35. ],
  36. "funding": [
  37. {
  38. "type": "Ko-Fi",
  39. "url": "https://ko-fi.com/codemasher"
  40. }
  41. ],
  42. "support": {
  43. "docs": "https://php-qrcode.readthedocs.io",
  44. "issues": "https://github.com/chillerlan/php-qrcode/issues",
  45. "source": "https://github.com/chillerlan/php-qrcode"
  46. },
  47. "minimum-stability": "stable",
  48. "prefer-stable": true,
  49. "require": {
  50. "php": "^8.2",
  51. "ext-mbstring": "*",
  52. "chillerlan/php-settings-container": "^3.2.1"
  53. },
  54. "require-dev": {
  55. "ext-fileinfo": "*",
  56. "chillerlan/php-authenticator": "^5.2.1",
  57. "intervention/image": "^3.8",
  58. "phpbench/phpbench": "^1.3",
  59. "phpunit/phpunit": "^11.3",
  60. "phpmd/phpmd": "^2.15",
  61. "phpstan/phpstan": "^2.0",
  62. "phpstan/phpstan-deprecation-rules": "^2.0",
  63. "setasign/fpdf": "^1.8.2",
  64. "slevomat/coding-standard": "^8.15",
  65. "squizlabs/php_codesniffer": "^3.10"
  66. },
  67. "suggest": {
  68. "chillerlan/php-authenticator": "Yet another Google authenticator! Also creates URIs for mobile apps.",
  69. "intervention/image": "More advanced GD and ImageMagick output.",
  70. "setasign/fpdf": "Required to use the QR FPDF output.",
  71. "simple-icons/simple-icons": "SVG icons that you can use to embed as logos in the QR Code"
  72. },
  73. "autoload": {
  74. "psr-4": {
  75. "chillerlan\\QRCode\\": "src"
  76. }
  77. },
  78. "autoload-dev": {
  79. "psr-4": {
  80. "chillerlan\\QRCodeBenchmark\\": "benchmark",
  81. "chillerlan\\QRCodeTest\\": "tests"
  82. }
  83. },
  84. "scripts": {
  85. "phpbench":[
  86. "Composer\\Config::disableProcessTimeout",
  87. "@php vendor/bin/phpbench run"
  88. ],
  89. "phpcs": "@php vendor/bin/phpcs",
  90. "phpstan": "@php vendor/bin/phpstan",
  91. "phpstan-baseline": "@php vendor/bin/phpstan --generate-baseline",
  92. "phpunit": "@php vendor/bin/phpunit"
  93. },
  94. "config": {
  95. "lock": false,
  96. "sort-packages": true,
  97. "platform-check": true,
  98. "allow-plugins": {
  99. "dealerdirect/phpcodesniffer-composer-installer": true
  100. }
  101. }
  102. }