o2system/curl
最新稳定版本:v2.2.0
Composer 安装命令:
composer require o2system/curl
包简介
PHP Lightweight HTTP Request Client Libraries
README 文档
README
O2System Curl
O2System Curl is a PHP Lightweight HTTP Request Client Library which is build for working more powerful with O2System Framework, but also can be used for integrated with others as standalone version with limited features.
Features
- Utility methods to call GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE, PATCH requests.
- Supports form parameters, file uploads and custom body entities.
- Supports gzip compression.
- Supports Basic, Digest, Negotiate, NTLM Authentication natively.
- Customizable timeout.
- Customizable default headers for every request (DRY).
- Automatic response parsing for JSON, XML, HTML and PHP Serialize Parsing into a native object.
- Multiple request support.
Composer Instalation
The best way to install O2System Curl is to use Composer
composer require o2system/curl
Packagist: https://packagist.org/packages/o2system/curl
Usage
use O2System\Curl; use O2System\Kernel\Http\Message\Uri; // Single Request $request = new Curl\Request(); $request->setUri( new Uri() )->withHost( 'api.o2system.id' )->withPath( 'testing'); // Multi Request $multirequest = new Curl\MultiRequest(); $multirequest->register( $request ); // Get single response $response = $request->get(); // Get multiple responses $responses = $multirequest->get();
Documentation is available on this repository wiki or visit this repository github page.
Ideas and Suggestions
Please kindly mail us at hello@o2system.id
Bugs and Issues
Please kindly submit your issues at Github so we can track all the issues along development and send a pull request to this repository.
System Requirements
- PHP 7.2+ with (JSON, SimpleXML Extension)
- Composer
- O2System Kernel
统计信息
- 总下载量: 14.11k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 0
- 依赖项目数: 10
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-04-28