1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-01-17 21:38:16 +01:00
guzzle/composer.json

69 lines
1.7 KiB
JSON
Raw Normal View History

2011-11-01 20:01:49 -05:00
{
"name": "guzzlehttp/guzzle",
2011-11-01 20:01:49 -05:00
"type": "library",
2015-02-24 22:50:52 -08:00
"description": "Guzzle is a PHP HTTP client library",
2018-11-18 23:50:19 +01:00
"keywords": [
"framework",
"http",
"rest",
"web service",
"curl",
"client",
"HTTP client"
],
"homepage": "http://guzzlephp.org/",
2011-11-01 20:01:49 -05:00
"license": "MIT",
"authors": [
2012-02-25 16:47:37 -04:30
{
"name": "Michael Dowling",
"email": "mtdowling@gmail.com",
"homepage": "https://github.com/mtdowling"
2019-12-21 22:37:08 +01:00
},
{
"name": "Márk Sági-Kazár",
"email": "mark.sagikazar@gmail.com",
"homepage": "https://sagikazarmark.hu"
2011-11-01 20:01:49 -05:00
}
2012-02-25 16:47:37 -04:30
],
2011-11-01 20:01:49 -05:00
"require": {
"php": "^7.2.5",
2018-11-25 22:09:37 +02:00
"ext-json": "*",
2018-11-18 23:50:19 +01:00
"guzzlehttp/promises": "^1.0",
"guzzlehttp/psr7": "^1.6.1",
"psr/http-client": "^1.0"
2012-04-16 14:53:42 -07:00
},
2014-10-12 22:22:37 +01:00
"require-dev": {
"ext-curl": "*",
2019-12-20 12:58:44 +01:00
"ergebnis/composer-normalize": "^2.0",
"php-http/client-integration-tests": "dev-phpunit8",
2019-12-20 12:58:44 +01:00
"phpunit/phpunit": "^8.5",
2018-11-21 19:36:52 +02:00
"psr/log": "^1.1"
},
2018-11-18 23:50:19 +01:00
"suggest": {
2020-01-19 08:31:46 +00:00
"ext-curl": "Required for CURL handler support",
2019-12-20 13:14:15 +01:00
"ext-intl": "Required for Internationalized Domain Name (IDN) support",
"psr/log": "Required for using the Log middleware"
2018-11-18 23:50:19 +01:00
},
2018-11-25 22:11:59 +02:00
"config": {
"sort-packages": true
},
2018-11-18 23:50:19 +01:00
"extra": {
"branch-alias": {
"dev-master": "7.0-dev"
2018-11-18 23:50:19 +01:00
}
},
2011-11-01 20:01:49 -05:00
"autoload": {
"psr-4": {
"GuzzleHttp\\": "src/"
2018-11-18 23:50:19 +01:00
},
"files": [
"src/functions_include.php"
]
},
"autoload-dev": {
"psr-4": {
"GuzzleHttp\\Tests\\": "tests/"
}
}
2012-04-16 14:53:42 -07:00
}