composer.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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.11",
  58. "phan/phan": "6.0.0-beta",
  59. "phpbench/phpbench": "^1.4",
  60. "phpunit/phpunit": "^11.5",
  61. "phpmd/phpmd": "^2.15",
  62. "phpstan/phpstan": "^2.1.28",
  63. "phpstan/phpstan-deprecation-rules": "^2.0.3",
  64. "setasign/fpdf": "^1.8.6",
  65. "slevomat/coding-standard": "^8.23",
  66. "squizlabs/php_codesniffer": "^4.0"
  67. },
  68. "suggest": {
  69. "chillerlan/php-authenticator": "Yet another Google authenticator! Also creates URIs for mobile apps.",
  70. "intervention/image": "More advanced GD and ImageMagick output.",
  71. "setasign/fpdf": "Required to use the QR FPDF output.",
  72. "simple-icons/simple-icons": "SVG icons that you can use to embed as logos in the QR Code"
  73. },
  74. "autoload": {
  75. "psr-4": {
  76. "chillerlan\\QRCode\\": "src"
  77. }
  78. },
  79. "autoload-dev": {
  80. "psr-4": {
  81. "chillerlan\\QRCodeBenchmark\\": "benchmark",
  82. "chillerlan\\QRCodeTest\\": "tests"
  83. }
  84. },
  85. "scripts": {
  86. "phan": "@php vendor/bin/phan",
  87. "phpbench":[
  88. "Composer\\Config::disableProcessTimeout",
  89. "@php vendor/bin/phpbench run"
  90. ],
  91. "phpcs": "@php vendor/bin/phpcs",
  92. "phpmd": "@php vendor/bin/phpmd src text ./phpmd.xml.dist",
  93. "phpstan": "@php vendor/bin/phpstan",
  94. "phpstan-baseline": "@php vendor/bin/phpstan --generate-baseline",
  95. "phpunit": "@php vendor/bin/phpunit"
  96. },
  97. "config": {
  98. "lock": false,
  99. "sort-packages": true,
  100. "platform-check": true,
  101. "allow-plugins": {
  102. "dealerdirect/phpcodesniffer-composer-installer": true
  103. }
  104. }
  105. }