wishthis/vendor/psr/http-client/composer.json

31 lines
727 B
JSON
Raw Normal View History

2022-01-21 08:23:52 +00:00
{
"name": "psr/http-client",
"description": "Common interface for HTTP clients",
"keywords": ["psr", "psr-18", "http", "http-client"],
"homepage": "https://github.com/php-fig/http-client",
"license": "MIT",
"authors": [
{
"name": "PHP-FIG",
2023-08-17 09:48:42 +00:00
"homepage": "https://www.php-fig.org/"
2022-01-21 08:23:52 +00:00
}
],
2023-12-19 14:31:43 +00:00
"support": {
"source": "https://github.com/php-fig/http-client"
},
2022-01-21 08:23:52 +00:00
"require": {
"php": "^7.0 || ^8.0",
2023-08-17 09:48:42 +00:00
"psr/http-message": "^1.0 || ^2.0"
2022-01-21 08:23:52 +00:00
},
"autoload": {
"psr-4": {
"Psr\\Http\\Client\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}