composer.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "zendframework/zend-i18n",
  3. "description": "Provide translations for your application, and filter and validate internationalized values",
  4. "license": "BSD-3-Clause",
  5. "keywords": [
  6. "zendframework",
  7. "zf",
  8. "i18n"
  9. ],
  10. "support": {
  11. "docs": "https://docs.zendframework.com/zend-i18n/",
  12. "issues": "https://github.com/zendframework/zend-i18n/issues",
  13. "source": "https://github.com/zendframework/zend-i18n",
  14. "rss": "https://github.com/zendframework/zend-i18n/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. "ext-intl": "*",
  21. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.16",
  25. "zendframework/zend-cache": "^2.6.1",
  26. "zendframework/zend-coding-standard": "~1.0.0",
  27. "zendframework/zend-config": "^2.6",
  28. "zendframework/zend-eventmanager": "^2.6.2 || ^3.0",
  29. "zendframework/zend-filter": "^2.6.1",
  30. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  31. "zendframework/zend-validator": "^2.6",
  32. "zendframework/zend-view": "^2.6.3"
  33. },
  34. "conflict": {
  35. "phpspec/prophecy": "<1.9.0"
  36. },
  37. "suggest": {
  38. "zendframework/zend-cache": "Zend\\Cache component",
  39. "zendframework/zend-config": "Zend\\Config component",
  40. "zendframework/zend-eventmanager": "You should install this package to use the events in the translator",
  41. "zendframework/zend-filter": "You should install this package to use the provided filters",
  42. "zendframework/zend-i18n-resources": "Translation resources",
  43. "zendframework/zend-servicemanager": "Zend\\ServiceManager component",
  44. "zendframework/zend-validator": "You should install this package to use the provided validators",
  45. "zendframework/zend-view": "You should install this package to use the provided view helpers"
  46. },
  47. "autoload": {
  48. "psr-4": {
  49. "Zend\\I18n\\": "src/"
  50. }
  51. },
  52. "autoload-dev": {
  53. "psr-4": {
  54. "ZendTest\\I18n\\": "test/"
  55. }
  56. },
  57. "config": {
  58. "sort-packages": true
  59. },
  60. "extra": {
  61. "branch-alias": {
  62. "dev-master": "2.10.x-dev",
  63. "dev-develop": "2.11.x-dev"
  64. },
  65. "zf": {
  66. "component": "Zend\\I18n",
  67. "config-provider": "Zend\\I18n\\ConfigProvider"
  68. }
  69. },
  70. "scripts": {
  71. "check": [
  72. "@cs-check",
  73. "@test"
  74. ],
  75. "cs-check": "phpcs",
  76. "cs-fix": "phpcbf",
  77. "test": "phpunit --colors=always",
  78. "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
  79. }
  80. }