composer package updates
[openemr.git] / vendor / zendframework / zend-i18n / composer.json
blob3235805c03cee2ae315ea7a937724ce123fcb833
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         "zendframework/zend-stdlib": "^2.7 || ^3.0"
21     },
22     "require-dev": {
23         "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
24         "zendframework/zend-cache": "^2.6.1",
25         "zendframework/zend-coding-standard": "~1.0.0",
26         "zendframework/zend-config": "^2.6",
27         "zendframework/zend-eventmanager": "^2.6.2 || ^3.0",
28         "zendframework/zend-filter": "^2.6.1",
29         "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
30         "zendframework/zend-validator": "^2.6",
31         "zendframework/zend-view": "^2.6.3"
32     },
33     "suggest": {
34         "ext-intl": "Required for most features of Zend\\I18n; included in default builds of PHP",
35         "zendframework/zend-cache": "Zend\\Cache component",
36         "zendframework/zend-config": "Zend\\Config component",
37         "zendframework/zend-eventmanager": "You should install this package to use the events in the translator",
38         "zendframework/zend-filter": "You should install this package to use the provided filters",
39         "zendframework/zend-i18n-resources": "Translation resources",
40         "zendframework/zend-servicemanager": "Zend\\ServiceManager component",
41         "zendframework/zend-validator": "You should install this package to use the provided validators",
42         "zendframework/zend-view": "You should install this package to use the provided view helpers"
43     },
44     "autoload": {
45         "psr-4": {
46             "Zend\\I18n\\": "src/"
47         }
48     },
49     "autoload-dev": {
50         "psr-4": {
51             "ZendTest\\I18n\\": "test/"
52         }
53     },
54     "config": {
55         "sort-packages": true
56     },
57     "extra": {
58         "branch-alias": {
59             "dev-master": "2.9.x-dev",
60             "dev-develop": "2.10.x-dev"
61         },
62         "zf": {
63             "component": "Zend\\I18n",
64             "config-provider": "Zend\\I18n\\ConfigProvider"
65         }
66     },
67     "scripts": {
68         "check": [
69             "@cs-check",
70             "@test"
71         ],
72         "cs-check": "phpcs",
73         "cs-fix": "phpcbf",
74         "test": "phpunit --colors=always",
75         "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
76     }