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

45 lines
1.1 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",
"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/",
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": {
2014-03-11 19:35:51 -07:00
"php": ">=5.4.0",
2014-10-12 20:48:44 +01:00
"guzzlehttp/ring": "~1.0@dev",
"guzzlehttp/streams": "~3.0",
2014-10-02 00:42:11 -07:00
"react/promise": "~2.0"
2012-04-16 14:53:42 -07:00
},
"suggest": {
"ext-curl": "Guzzle will use specific adapters if cURL is present"
},
2011-11-01 20:01:49 -05:00
"autoload": {
"psr-4": {
"GuzzleHttp\\": "src/"
2014-10-06 20:48:40 -07:00
}
},
"autoload-dev": {
"psr-4": {
"GuzzleHttp\\Tests\\": "tests/"
}
},
"require-dev": {
"ext-curl": "*",
2014-03-30 20:29:25 +01:00
"psr/log": "~1.0",
"phpunit/phpunit": "~4.0"
},
"extra": {
"branch-alias": {
"dev-ring": "5.0-dev"
}
}
2012-04-16 14:53:42 -07:00
}