1{
2    "name": "guzzlehttp/guzzle",
3    "type": "library",
4    "description": "Guzzle is a PHP HTTP client library",
5    "keywords": [
6        "framework",
7        "http",
8        "rest",
9        "web service",
10        "curl",
11        "client",
12        "HTTP client",
13        "PSR-7",
14        "PSR-18"
15    ],
16    "homepage": "http://guzzlephp.org/",
17    "license": "MIT",
18    "authors": [
19        {
20            "name": "Michael Dowling",
21            "email": "mtdowling@gmail.com",
22            "homepage": "https://github.com/mtdowling"
23        },
24        {
25            "name": "Márk Sági-Kazár",
26            "email": "mark.sagikazar@gmail.com",
27            "homepage": "https://sagikazarmark.hu"
28        }
29    ],
30    "require": {
31        "php": "^7.2.5 || ^8.0",
32        "ext-json": "*",
33        "guzzlehttp/promises": "^1.4",
34        "guzzlehttp/psr7": "^1.7",
35        "psr/http-client": "^1.0"
36    },
37    "provide": {
38        "psr/http-client-implementation": "1.0"
39    },
40    "require-dev": {
41        "ext-curl": "*",
42        "php-http/client-integration-tests": "^3.0",
43        "phpunit/phpunit": "^8.5.5 || ^9.3.5",
44        "psr/log": "^1.1"
45    },
46    "suggest": {
47        "ext-curl": "Required for CURL handler support",
48        "ext-intl": "Required for Internationalized Domain Name (IDN) support",
49        "psr/log": "Required for using the Log middleware"
50    },
51    "config": {
52        "sort-packages": true
53    },
54    "extra": {
55        "branch-alias": {
56            "dev-master": "7.1-dev"
57        }
58    },
59    "autoload": {
60        "psr-4": {
61            "GuzzleHttp\\": "src/"
62        },
63        "files": [
64            "src/functions_include.php"
65        ]
66    },
67    "autoload-dev": {
68        "psr-4": {
69            "GuzzleHttp\\Tests\\": "tests/"
70        }
71    }
72}
73