You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
635 B
28 lines
635 B
4 years ago
|
{
|
||
|
"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",
|
||
|
"homepage": "http://www.php-fig.org/"
|
||
|
}
|
||
|
],
|
||
|
"require": {
|
||
|
"php": "^7.0 || ^8.0",
|
||
|
"psr/http-message": "^1.0"
|
||
|
},
|
||
|
"autoload": {
|
||
|
"psr-4": {
|
||
|
"Psr\\Http\\Client\\": "src/"
|
||
|
}
|
||
|
},
|
||
|
"extra": {
|
||
|
"branch-alias": {
|
||
|
"dev-master": "1.0.x-dev"
|
||
|
}
|
||
|
}
|
||
|
}
|