composer.json 2.5 KB

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