composer.json 2.5 KB

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