0
0

composer.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "zendframework/zend-escaper",
  3. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  4. "license": "BSD-3-Clause",
  5. "keywords": [
  6. "zf",
  7. "zendframework",
  8. "escaper"
  9. ],
  10. "support": {
  11. "docs": "https://docs.zendframework.com/zend-escaper/",
  12. "issues": "https://github.com/zendframework/zend-escaper/issues",
  13. "source": "https://github.com/zendframework/zend-escaper",
  14. "rss": "https://github.com/zendframework/zend-escaper/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. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  23. "zendframework/zend-coding-standard": "~1.0.0"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "Zend\\Escaper\\": "src/"
  28. }
  29. },
  30. "autoload-dev": {
  31. "psr-4": {
  32. "ZendTest\\Escaper\\": "test/"
  33. }
  34. },
  35. "config": {
  36. "sort-packages": true
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "2.6.x-dev",
  41. "dev-develop": "2.7.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. }