composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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.2",
  28. "ext-json": "*",
  29. "ext-mbstring": "*",
  30. "chillerlan/php-settings-container": "^1.1"
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "^8.0"
  34. },
  35. "suggest": {
  36. "chillerlan/php-authenticator": "^3.0"
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "chillerlan\\QRCode\\": "src/"
  41. }
  42. },
  43. "autoload-dev": {
  44. "psr-4": {
  45. "chillerlan\\QRCodePublic\\": "public/",
  46. "chillerlan\\QRCodeTest\\": "tests/",
  47. "chillerlan\\QRCodeExamples\\": "examples/"
  48. }
  49. },
  50. "extra": {
  51. "branch-alias": {
  52. "dev-v2.0.x-php5": "1.0.8-dev"
  53. }
  54. }
  55. }