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

43 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-05-19 10:49:28 -07:00
"guzzlehttp/psr7": "^1.0.0",
2015-05-18 15:30:41 -07:00
"guzzlehttp/promises": "^1.0.0"
2012-04-16 14:53:42 -07:00
},
2014-10-12 22:22:37 +01:00
"require-dev": {
"ext-curl": "*",
2015-03-30 00:15:09 +01:00
"psr/log": "^1.0",
"phpunit/phpunit": "^4.0"
},
2011-11-01 20:01:49 -05:00
"autoload": {
2015-03-20 00:21:42 -07:00
"files": ["src/functions.php"],
"psr-4": {
"GuzzleHttp\\": "src/"
2015-03-03 14:02:24 -08:00
}
},
"autoload-dev": {
"psr-4": {
"GuzzleHttp\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
2015-05-25 16:21:15 -07:00
"dev-master": "6.0-dev",
2015-05-25 16:47:27 -07:00
"dev-v5": "5.3-dev"
}
}
2012-04-16 14:53:42 -07:00
}