1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-01-18 05:48:15 +01:00
guzzle/composer.json

60 lines
1.3 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"
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": ">=5.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"
2012-04-16 14:53:42 -07:00
},
2014-10-12 22:22:37 +01:00
"require-dev": {
"ext-curl": "*",
2018-04-08 21:11:25 +02:00
"phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
2018-11-21 19:36:52 +02:00
"psr/log": "^1.1"
},
2018-11-18 23:50:19 +01:00
"suggest": {
"psr/log": "Required for using the Log middleware",
"ext-intl": "Required for Internationalized Domain Name (IDN) support"
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": "6.5-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
}