composer.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "chillerlan/php-qrcode",
  3. "description": "A QR code generator with a user friendly API. PHP 7.4+",
  4. "homepage": "https://github.com/chillerlan/php-qrcode",
  5. "license": "MIT",
  6. "minimum-stability": "stable",
  7. "type": "library",
  8. "keywords": [
  9. "QR code", "qrcode", "qr", "qrcode-generator", "phpqrcode"
  10. ],
  11. "authors": [
  12. {
  13. "name": "Kazuhiko Arase",
  14. "homepage": "https://github.com/kazuhikoarase"
  15. },
  16. {
  17. "name": "Smiley",
  18. "email": "smiley@chillerlan.net",
  19. "homepage": "https://github.com/codemasher"
  20. },
  21. {
  22. "name": "Contributors",
  23. "homepage":"https://github.com/chillerlan/php-qrcode/graphs/contributors"
  24. }
  25. ],
  26. "require": {
  27. "php": "^7.4 || ^8.0",
  28. "ext-mbstring": "*",
  29. "chillerlan/php-settings-container": "^2.1.6 || ^3.2.1"
  30. },
  31. "require-dev": {
  32. "phan/phan": "^5.4.5",
  33. "phpmd/phpmd": "^2.15",
  34. "phpunit/phpunit": "^9.6",
  35. "setasign/fpdf": "^1.8.2",
  36. "squizlabs/php_codesniffer": "^3.11"
  37. },
  38. "suggest": {
  39. "chillerlan/php-authenticator": "Yet another Google authenticator! Also creates URIs for mobile apps.",
  40. "setasign/fpdf": "Required to use the QR FPDF output.",
  41. "simple-icons/simple-icons": "SVG icons that you can use to embed as logos in the QR Code"
  42. },
  43. "autoload": {
  44. "psr-4": {
  45. "chillerlan\\QRCode\\": "src/"
  46. }
  47. },
  48. "autoload-dev": {
  49. "psr-4": {
  50. "chillerlan\\QRCodeTest\\": "tests/"
  51. }
  52. },
  53. "scripts": {
  54. "phpunit": "@php vendor/bin/phpunit",
  55. "phan": "@php vendor/bin/phan"
  56. },
  57. "config": {
  58. "lock": false,
  59. "sort-packages": true,
  60. "platform-check": true
  61. }
  62. }