composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "chillerlan/php-qrcode",
  3. "description": "A QR code generator. PHP 7.2+",
  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",
  28. "ext-gd": "*",
  29. "ext-json": "*",
  30. "ext-mbstring": "*",
  31. "chillerlan/php-settings-container": "^1.2"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^9.0"
  35. },
  36. "suggest": {
  37. "chillerlan/php-authenticator": "Yet another Google authenticator! Also creates URIs for mobile apps."
  38. },
  39. "autoload": {
  40. "psr-4": {
  41. "chillerlan\\QRCode\\": "src/"
  42. }
  43. },
  44. "autoload-dev": {
  45. "psr-4": {
  46. "chillerlan\\QRCodePublic\\": "public/",
  47. "chillerlan\\QRCodeTest\\": "tests/",
  48. "chillerlan\\QRCodeExamples\\": "examples/"
  49. }
  50. },
  51. "extra": {
  52. "branch-alias": {
  53. "dev-v2.0.x-php5": "1.0.8-dev"
  54. }
  55. }
  56. }