composer.json 960 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "chillerlan/php-qrcode",
  3. "description": "A QR code generator. PHP 7+",
  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.0.3",
  24. "chillerlan/php-traits": "^1.1"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^6.5",
  28. "chillerlan/php-authenticator": "^2.0"
  29. },
  30. "suggest": {
  31. },
  32. "autoload": {
  33. "psr-4": {
  34. "chillerlan\\QRCode\\": "src/"
  35. }
  36. },
  37. "autoload-dev": {
  38. "psr-4": {
  39. "chillerlan\\QRCodePublic\\": "public/",
  40. "chillerlan\\QRCodeTest\\": "tests/",
  41. "chillerlan\\QRCodeExamples\\": "examples/"
  42. }
  43. },
  44. "extra": {
  45. "branch-alias": {
  46. "dev-v2.0.x-php5": "1.0.8-dev"
  47. }
  48. }
  49. }