lefuturiste/httper

基于file_get_contents的PSR-7 HTTP客户端。

v0.4-alpha 2018-07-08 11:45 UTC

This package is auto-updated.

Last update: 2024-09-20 08:05:36 UTC


README

基于file_get_contents的PSR-7 HTTP客户端。

安装

composer require lefuturiste/httper

使用方法

//execute a simple GET request to google.com
$client = new Httper\Client();
$response = $client->request("GET", "https://google.com")

测试

composer test

composer run test

composer run phpunit