composer.json 1.0 KB

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "picqer/php-barcode-generator",
  3. "type": "library",
  4. "description": "An easy to use, non-bloated, barcode generator in PHP. Creates SVG, PNG, JPG and HTML images from the most used 1D barcode standards.",
  5. "keywords": [ "php", "barcode", "barcode generator", "EAN", "EAN13", "UPC", "Code39", "Code128", "Code93", "Standard 2 of 5", "MSI", "POSTNET", "KIX", "KIXCODE", "CODABAR", "PHARMA", "Code11", "SVG", "PNG", "HTML", "JPG", "JPEG" ],
  6. "homepage": "http://github.com/picqer/php-barcode-generator",
  7. "license": "LGPLv3",
  8. "authors": [
  9. {
  10. "name": "Nicola Asuni",
  11. "email": "info@tecnick.com",
  12. "homepage": "http://nicolaasuni.tecnick.com"
  13. },
  14. {
  15. "name": "Casper Bakker",
  16. "email": "info@picqer.com"
  17. }
  18. ],
  19. "require": {
  20. "php": ">=5.4.0"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "^5.3"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "Picqer\\Barcode\\": "src"
  28. }
  29. }
  30. }