composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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": ["receipt", "print", "escpos", "ESC-POS", "driver"],
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Michael Billington",
  11. "email": "michael.billington@gmail.com"
  12. }
  13. ],
  14. "config": {
  15. "platform": {
  16. "php": "5.4.0"
  17. }
  18. },
  19. "require": {
  20. "php": ">=5.4.0",
  21. "ext-mbstring": "*"
  22. },
  23. "suggest": {
  24. "guzzlehttp/guzzle": "Allows the use of the ApiConnector to send print jobs over HTTP.",
  25. "ext-imagick": "Will be used for image printing if present. Required for PDF printing or use of custom fonts.",
  26. "ext-gd": "Used for image printing if present."
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^4.8",
  30. "squizlabs/php_codesniffer": "^3.2",
  31. "guzzlehttp/guzzle": "^5.3"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "Mike42\\": "src/Mike42"
  36. }
  37. }
  38. }