abelhalo/api-proxy

There is no license information available for the latest version (v1.6.6) of this package.

A simple api proxy for Laravel

v1.6.6 2021-06-15 06:42 UTC

This package is auto-updated.

Last update: 2024-04-15 12:38:54 UTC


README

A simple api proxy for Laravel.

用法

use AbelHalo\ApiProxy\ApiProxy;

$proxy = new ApiProxy;

// 返回值类型:object / array / string / json
$proxy->setReturnAs('object');

// 开启请求日志
$proxy->logger->enable();

// 请求方法:get / post / put / ...
$proxy->post($url, $params);