1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-01-18 05:48:15 +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",
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": {
"php": ">=5.5",
"guzzlehttp/psr7": "^1.4",
"guzzlehttp/promises": "^1.0"
2012-04-16 14:53:42 -07:00
},
2014-10-12 22:22:37 +01:00
"require-dev": {
"ext-curl": "*",
2017-11-11 03:54:11 -02:00
"phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4",
"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/"
}
},
"suggest": {
"psr/log": "Required for using the Log middleware"
},
"extra": {
"branch-alias": {
2018-03-11 14:15:12 +00:00
"dev-master": "6.3-dev"
}
}
2012-04-16 14:53:42 -07:00
}