65687a58219e682d850d2c87b7127e17612ed942
[yaffs-website] / vendor / guzzlehttp / guzzle / composer.json
1 {
2     "name": "guzzlehttp/guzzle",
3     "type": "library",
4     "description": "Guzzle is a PHP HTTP client library",
5     "keywords": ["framework", "http", "rest", "web service", "curl", "client", "HTTP client"],
6     "homepage": "http://guzzlephp.org/",
7     "license": "MIT",
8     "authors": [
9         {
10             "name": "Michael Dowling",
11             "email": "mtdowling@gmail.com",
12             "homepage": "https://github.com/mtdowling"
13         }
14     ],
15     "require": {
16         "php": ">=5.5",
17         "guzzlehttp/psr7": "^1.4",
18         "guzzlehttp/promises": "^1.0"
19     },
20     "require-dev": {
21         "ext-curl": "*",
22         "phpunit/phpunit": "^4.0 || ^5.0",
23         "psr/log": "^1.0"
24     },
25     "autoload": {
26         "files": ["src/functions_include.php"],
27         "psr-4": {
28             "GuzzleHttp\\": "src/"
29         }
30     },
31     "autoload-dev": {
32         "psr-4": {
33             "GuzzleHttp\\Tests\\": "tests/"
34         }
35     },
36     "suggest": {
37         "psr/log": "Required for using the Log middleware"
38     },
39     "extra": {
40         "branch-alias": {
41             "dev-master": "6.2-dev"
42         }
43     }
44 }