composer.json 813 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "smusatov/bzb-2u",
  3. "type": "library",
  4. "description": "Library for thermal printer GoDex BZB-2U",
  5. "homepage": "https://git.zikk.ru/SMusatov/bzb-2u",
  6. "keywords": [
  7. "printing",
  8. "printer",
  9. "thermal printer",
  10. "label printer",
  11. "GoDex",
  12. "BZB-2U"
  13. ],
  14. "license": "MIT",
  15. "authors": [
  16. {
  17. "name": "S.Musatov",
  18. "email": "akapulse@yandex.ru"
  19. }
  20. ],
  21. "support": {
  22. "email": "akapulse@yandex.ru",
  23. "issues": "https://git.zikk.ru/SMusatov/bzb-2u/issues",
  24. "source": "https://git.zikk.ru/SMusatov/bzb-2u"
  25. },
  26. "config": {
  27. "optimize-autoloader": true,
  28. "process-timeout": 0,
  29. "cache-files-ttl": 0
  30. },
  31. "require": {
  32. "php": ">=7.4",
  33. "ext-imagick": "*"
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "smusatov\\bzb2u\\": "src/"
  38. }
  39. }
  40. }