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 7.4+",
  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": "^7.4 || ^8.0",
  50. "ext-mbstring": "*",
  51. "chillerlan/php-settings-container": "^2.1.6 || ^3.2.1"
  52. },
  53. "require-dev": {
  54. "ext-fileinfo": "*",
  55. "chillerlan/php-authenticator": "^4.3.1 || ^5.2.1",
  56. "phan/phan": "^5.4.5",
  57. "phpcompatibility/php-compatibility": "10.x-dev",
  58. "phpunit/phpunit": "^9.6",
  59. "phpmd/phpmd": "^2.15",
  60. "setasign/fpdf": "^1.8.2",
  61. "slevomat/coding-standard": "^8.15",
  62. "squizlabs/php_codesniffer": "^3.11"
  63. },
  64. "suggest": {
  65. "chillerlan/php-authenticator": "Yet another Google authenticator! Also creates URIs for mobile apps.",
  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\\QRCodeTest\\": "tests"
  77. }
  78. },
  79. "scripts": {
  80. "phan": "@php vendor/bin/phan",
  81. "phpcs": "@php vendor/bin/phpcs",
  82. "phpunit": "@php vendor/bin/phpunit"
  83. },
  84. "config": {
  85. "lock": false,
  86. "sort-packages": true,
  87. "platform-check": true,
  88. "allow-plugins": {
  89. "dealerdirect/phpcodesniffer-composer-installer": true
  90. }
  91. }
  92. }