litermi/external-request
最新稳定版本:1.0.28
Composer 安装命令:
composer require litermi/external-request
包简介
The External Request is a package to send request to others api-rest .
关键字:
README 文档
README
About
The External Request is a package to send request to others api-rest .
Tutorial how create composer package
Installation
Require the litermi/external-request package in your composer.json and update your dependencies:
composer require litermi/external-request
Configuration
set provider
'providers' => [ // ... Litermi\ExternalRequest\Providers\ServiceProvider::class, ],
The defaults are set in config/external-request.php. Publish the config to copy the file to your own config:
php artisan vendor:publish --provider="Litermi\ExternalRequest\Providers\ServiceProvider"
Note: this is necessary to you can change default config
Usage
use Litermi\ExternalRequest\ExternalServiceRequestService; $baseUri = "yourdomain.com" $requestPath = "/api/users" $formParams = []; $headers = []; $method = "GET"; $response = ExternalServiceRequestService::execute( $baseUri, $method, $requestPath, $formParams, $header ); $method = "POST"; $formParams = ["username":"cirel", "password":"you"]; $responsePost = ExternalServiceRequestService::execute( $baseUri, $method, $requestPath, $formParams, $headers );
License
Released under the MIT License, see LICENSE.
统计信息
- 总下载量: 3.47k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-04-13