composer.json 952B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name" : "mike42/escpos-php",
  3. "type" : "library",
  4. "description" : "PHP receipt printer library for use with ESC/POS-compatible thermal and impact printers",
  5. "homepage" : "https://github.com/mike42/escpos-php",
  6. "keywords" : [
  7. "barcode",
  8. "epson",
  9. "receipt-printer",
  10. "printer",
  11. "escpos"
  12. ],
  13. "license" : "MIT",
  14. "authors" : [{
  15. "name" : "Michael Billington",
  16. "email" : "michael.billington@gmail.com"
  17. }
  18. ],
  19. "config": {
  20. "platform": {
  21. "php": "7.0.0"
  22. }
  23. },
  24. "require" : {
  25. "php" : ">=7.0.0",
  26. "ext-json": "*",
  27. "ext-intl": "*",
  28. "ext-zlib": "*",
  29. "mike42/gfx-php" : "^0.6"
  30. },
  31. "suggest" : {
  32. "ext-imagick" : "Will be used for image printing if present. Required for PDF printing or use of custom fonts.",
  33. "ext-gd" : "Used for image printing if present."
  34. },
  35. "require-dev" : {
  36. "phpunit/phpunit" : "^6.5",
  37. "squizlabs/php_codesniffer" : "^3.3"
  38. },
  39. "autoload" : {
  40. "psr-4" : {
  41. "Mike42\\" : "src/Mike42"
  42. }
  43. }
  44. }