1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-02-24 10:03:27 +01:00
guzzle/composer.json

42 lines
1.0 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",
"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": {
2015-04-25 19:29:57 -07:00
"php": ">=5.5.0",
2015-06-24 13:05:23 -07:00
"guzzlehttp/psr7": "~1.1",
"guzzlehttp/promises": "~1.0"
2012-04-16 14:53:42 -07:00
},
2014-10-12 22:22:37 +01:00
"require-dev": {
"ext-curl": "*",
"phpunit/phpunit": "~4.0",
"psr/log": "~1.0"
},
2011-11-01 20:01:49 -05:00
"autoload": {
2015-06-25 12:50:04 -04:00
"files": ["src/functions_include.php"],
"psr-4": {
"GuzzleHttp\\": "src/"
2014-10-06 20:48:40 -07:00
}
},
"autoload-dev": {
"psr-4": {
"GuzzleHttp\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
2015-09-06 21:56:33 +01:00
"dev-master": "6.1-dev"
}
}
2012-04-16 14:53:42 -07:00
}