streams/vendor/guzzlehttp/guzzle/composer.json

59 lines
1.3 KiB
JSON
Raw Normal View History

2019-07-07 23:18:20 +00:00
{
"name": "guzzlehttp/guzzle",
"type": "library",
"description": "Guzzle is a PHP HTTP client library",
2019-11-08 03:12:56 +00:00
"keywords": [
"framework",
"http",
"rest",
"web service",
"curl",
"client",
"HTTP client"
],
2019-07-07 23:18:20 +00:00
"homepage": "http://guzzlephp.org/",
"license": "MIT",
"authors": [
{
"name": "Michael Dowling",
"email": "mtdowling@gmail.com",
"homepage": "https://github.com/mtdowling"
}
],
"require": {
"php": ">=5.5",
2019-11-08 03:12:56 +00:00
"ext-json": "*",
"guzzlehttp/promises": "^1.0",
"guzzlehttp/psr7": "^1.6.1"
2019-07-07 23:18:20 +00:00
},
"require-dev": {
"ext-curl": "*",
"phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
2019-11-08 03:12:56 +00:00
"psr/log": "^1.1"
},
"suggest": {
"psr/log": "Required for using the Log middleware"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "6.3-dev"
}
2019-07-07 23:18:20 +00:00
},
"autoload": {
"psr-4": {
"GuzzleHttp\\": "src/"
2019-11-08 03:12:56 +00:00
},
"files": [
"src/functions_include.php"
]
2019-07-07 23:18:20 +00:00
},
"autoload-dev": {
"psr-4": {
"GuzzleHttp\\Tests\\": "tests/"
}
}
}