composer package updates
[openemr.git] / vendor / zendframework / zend-http / composer.json
blob07e1d89b098f2f8f10c18ff51ff9f6c6eb7ed763
2     "name": "zendframework/zend-http",
3     "description": "Provides an easy interface for performing Hyper-Text Transfer Protocol (HTTP) requests",
4     "license": "BSD-3-Clause",
5     "keywords": [
6         "zf",
7         "zend",
8         "zendframework",
9         "http",
10         "HTTP client"
11     ],
12     "support": {
13         "docs": "https://docs.zendframework.com/zend-http/",
14         "issues": "https://github.com/zendframework/zend-http/issues",
15         "source": "https://github.com/zendframework/zend-http",
16         "rss": "https://github.com/zendframework/zend-http/releases.atom",
17         "chat": "https://zendframework-slack.herokuapp.com",
18         "forum": "https://discourse.zendframework.com/c/questions/components"
19     },
20     "require": {
21         "php": "^5.6 || ^7.0",
22         "zendframework/zend-loader": "^2.5.1",
23         "zendframework/zend-stdlib": "^3.1 || ^2.7.7",
24         "zendframework/zend-uri": "^2.5.2",
25         "zendframework/zend-validator": "^2.10.1"
26     },
27     "require-dev": {
28         "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.3",
29         "zendframework/zend-coding-standard": "~1.0.0",
30         "zendframework/zend-config": "^3.1 || ^2.6"
31     },
32     "suggest": {
33         "paragonie/certainty": "For automated management of cacert.pem"
34     },
35     "autoload": {
36         "psr-4": {
37             "Zend\\Http\\": "src/"
38         }
39     },
40     "autoload-dev": {
41         "psr-4": {
42             "ZendTest\\Http\\": "test/"
43         }
44     },
45     "config": {
46         "sort-packages": true
47     },
48     "extra": {
49         "branch-alias": {
50             "dev-master": "2.8.x-dev",
51             "dev-develop": "2.9.x-dev"
52         }
53     },
54     "scripts": {
55         "check": [
56             "@cs-check",
57             "@test"
58         ],
59         "cs-check": "phpcs",
60         "cs-fix": "phpcbf",
61         "test": "phpunit --colors=always",
62         "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
63     }