composer.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "zendframework/zend-uri",
  3. "description": "A component that aids in manipulating and validating \u00bb Uniform Resource Identifiers (URIs)",
  4. "license": "BSD-3-Clause",
  5. "keywords": [
  6. "zf",
  7. "zendframework",
  8. "uri"
  9. ],
  10. "support": {
  11. "docs": "https://docs.zendframework.com/zend-uri/",
  12. "issues": "https://github.com/zendframework/zend-uri/issues",
  13. "source": "https://github.com/zendframework/zend-uri",
  14. "rss": "https://github.com/zendframework/zend-uri/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-escaper": "^2.5",
  21. "zendframework/zend-validator": "^2.10"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4",
  25. "zendframework/zend-coding-standard": "~1.0.0"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "Zend\\Uri\\": "src/"
  30. }
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "ZendTest\\Uri\\": "test/"
  35. }
  36. },
  37. "config": {
  38. "sort-packages": true
  39. },
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "2.7.x-dev",
  43. "dev-develop": "2.8.x-dev"
  44. }
  45. },
  46. "scripts": {
  47. "check": [
  48. "@cs-check",
  49. "@test"
  50. ],
  51. "cs-check": "phpcs",
  52. "cs-fix": "phpcbf",
  53. "test": "phpunit --colors=always",
  54. "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
  55. }
  56. }