1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-01-17 21:38:16 +01:00
guzzle/composer.json
Graham Campbell ebe6b8515d
[7.0] Merge changes from 6.5.3 (#2618)
* Travis improvements

* Don't use internal functions (#2548)

* [6.5] Install symfony's intl-idn polyfill (#2550)

* Install symfony's intl-idn polyfill

* idn conversion always available

* remove "skipped because of intl"

* PHPStan CI fix

Co-authored-by: Nyholm <tobias.nyholm@gmail.com>

* Prepare release of 6.5.3 (#2613)

* Prepare release of 6.5.3

* Typo

* Updated date

* Updated constant

* Fixed composer.json package order

Co-authored-by: Márk Sági-Kazár <sagikazarmark@users.noreply.github.com>
Co-authored-by: Nyholm <tobias.nyholm@gmail.com>
2020-04-18 15:31:39 +02:00

72 lines
1.7 KiB
JSON

{
"name": "guzzlehttp/guzzle",
"type": "library",
"description": "Guzzle is a PHP HTTP client library",
"keywords": [
"framework",
"http",
"rest",
"web service",
"curl",
"client",
"HTTP client"
],
"homepage": "http://guzzlephp.org/",
"license": "MIT",
"authors": [
{
"name": "Michael Dowling",
"email": "mtdowling@gmail.com",
"homepage": "https://github.com/mtdowling"
},
{
"name": "Márk Sági-Kazár",
"email": "mark.sagikazar@gmail.com",
"homepage": "https://sagikazarmark.hu"
}
],
"require": {
"php": "^7.2.5",
"ext-json": "*",
"guzzlehttp/promises": "^1.0",
"guzzlehttp/psr7": "^1.6.1",
"psr/http-client": "^1.0",
"symfony/polyfill-intl-idn": "^1.11"
},
"provide": {
"psr/http-client-implementation": "1.0"
},
"require-dev": {
"ext-curl": "*",
"ergebnis/composer-normalize": "^2.0",
"php-http/client-integration-tests": "dev-phpunit8",
"phpunit/phpunit": "^8.5",
"psr/log": "^1.1"
},
"suggest": {
"ext-curl": "Required for CURL handler support",
"psr/log": "Required for using the Log middleware"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "7.0-dev"
}
},
"autoload": {
"psr-4": {
"GuzzleHttp\\": "src/"
},
"files": [
"src/functions_include.php"
]
},
"autoload-dev": {
"psr-4": {
"GuzzleHttp\\Tests\\": "tests/"
}
}
}