composer.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "zendframework/zendxml",
  3. "description": "Utility library for XML usage, best practices, and security in PHP",
  4. "license": "BSD-3-Clause",
  5. "keywords": [
  6. "zf",
  7. "zendframework",
  8. "xml",
  9. "security"
  10. ],
  11. "support": {
  12. "issues": "https://github.com/zendframework/ZendXml/issues",
  13. "source": "https://github.com/zendframework/ZendXml",
  14. "rss": "https://github.com/zendframework/ZendXml/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. },
  21. "require-dev": {
  22. "zendframework/zend-coding-standard": "~1.0.0",
  23. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "ZendXml\\": "src/"
  28. }
  29. },
  30. "autoload-dev": {
  31. "psr-4": {
  32. "ZendXmlTest\\": "test/"
  33. }
  34. },
  35. "config": {
  36. "sort-packages": true
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "1.1.x-dev",
  41. "dev-develop": "1.2.x-dev"
  42. }
  43. },
  44. "scripts": {
  45. "check": [
  46. "@cs-check",
  47. "@test"
  48. ],
  49. "cs-check": "phpcs",
  50. "cs-fix": "phpcbf",
  51. "test": "phpunit --colors=always",
  52. "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
  53. }
  54. }