composer.json 911 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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"
  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. "require": {
  23. "php": "^7.2",
  24. "chillerlan/php-settings-container": "^1.0"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^7.3"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "chillerlan\\QRCode\\": "src/"
  32. }
  33. },
  34. "autoload-dev": {
  35. "psr-4": {
  36. "chillerlan\\QRCodePublic\\": "public/",
  37. "chillerlan\\QRCodeTest\\": "tests/",
  38. "chillerlan\\QRCodeExamples\\": "examples/"
  39. }
  40. },
  41. "extra": {
  42. "branch-alias": {
  43. "dev-v2.0.x-php5": "1.0.8-dev"
  44. }
  45. }
  46. }