1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-02-25 10:33:18 +01:00
guzzle/composer.json
David Prévot d1f90256b4 Expand dependencies
JSON is provided separately from PHP in some recent distributions.
cURL should be suggested according to the documentation.
2014-05-04 17:14:41 -04:00

46 lines
1.0 KiB
JSON

{
"name": "guzzlehttp/guzzle",
"type": "library",
"description": "Guzzle is a PHP HTTP client library and framework for building RESTful web service clients",
"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"
}
],
"require": {
"php": ">=5.4.0",
"ext-json": "*",
"guzzlehttp/streams": "~1.0"
},
"suggest": {
"ext-curl": "Guzzle will use specific adapters if cURL is present"
},
"autoload": {
"psr-4": {
"GuzzleHttp\\": "src/"
},
"files": ["src/functions.php"]
},
"require-dev": {
"ext-curl": "*",
"psr/log": "~1.0",
"phpunit/phpunit": "~4.0"
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
}
}