composer.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "zendframework/zend-barcode",
  3. "description": "Programmatically create and render barcodes as images or in PDFs",
  4. "license": "BSD-3-Clause",
  5. "keywords": [
  6. "zf",
  7. "zendframework",
  8. "barcode"
  9. ],
  10. "support": {
  11. "docs": "https://docs.zendframework.com/zend-barcode/",
  12. "issues": "https://github.com/zendframework/zend-barcode/issues",
  13. "source": "https://github.com/zendframework/zend-barcode",
  14. "rss": "https://github.com/zendframework/zend-barcode/releases.atom",
  15. "chat": "https://zendframework-slack.herokuapp.com",
  16. "forum": "https://discourse.zendframework.com/c/questions/components"
  17. },
  18. "require": {
  19. "php": "^5.6 || ^7.0",
  20. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  21. "zendframework/zend-stdlib": "^2.7.7 || ^3.1",
  22. "zendframework/zend-validator": "^2.10.1"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  26. "zendframework/zend-coding-standard": "~1.0.0",
  27. "zendframework/zend-config": "^2.6 || ^3.1",
  28. "zendframework/zendpdf": "^2.0.2"
  29. },
  30. "suggest": {
  31. "zendframework/zendpdf": "ZendPdf component"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "Zend\\Barcode\\": "src/"
  36. }
  37. },
  38. "autoload-dev": {
  39. "psr-4": {
  40. "ZendTest\\Barcode\\": "test/"
  41. }
  42. },
  43. "config": {
  44. "sort-packages": true
  45. },
  46. "extra": {
  47. "branch-alias": {
  48. "dev-master": "2.8.x-dev",
  49. "dev-develop": "2.9.x-dev"
  50. }
  51. },
  52. "scripts": {
  53. "check": [
  54. "@cs-check",
  55. "@test"
  56. ],
  57. "cs-check": "phpcs",
  58. "cs-fix": "phpcbf",
  59. "test": "phpunit --colors=always",
  60. "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
  61. }
  62. }