krz/vox-populi
A Tumblr web client.
clone: git clone https://gitbay.org/krz/vox-populi.git
main: vendor/guzzlehttp/guzzle/composer.json · raw
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 ],
14 "homepage": "http://guzzlephp.org/",
15 "license": "MIT",
16 "authors": [
17 {
18 "name": "Michael Dowling",
19 "email": "mtdowling@gmail.com",
20 "homepage": "https://github.com/mtdowling"
21 }
22 ],
23 "require": {
24 "php": ">=5.5",
25 "ext-json": "*",
26 "symfony/polyfill-intl-idn": "^1.17.0",
27 "guzzlehttp/promises": "^1.0",
28 "guzzlehttp/psr7": "^1.6.1"
29 },
30 "require-dev": {
31 "ext-curl": "*",
32 "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
33 "psr/log": "^1.1"
34 },
35 "suggest": {
36 "psr/log": "Required for using the Log middleware"
37 },
38 "config": {
39 "sort-packages": true
40 },
41 "extra": {
42 "branch-alias": {
43 "dev-master": "6.5-dev"
44 }
45 },
46 "autoload": {
47 "psr-4": {
48 "GuzzleHttp\\": "src/"
49 },
50 "files": [
51 "src/functions_include.php"
52 ]
53 },
54 "autoload-dev": {
55 "psr-4": {
56 "GuzzleHttp\\Tests\\": "tests/"
57 }
58 }
59}