o2system / curl
PHP Lightweight HTTP Request Client Libraries
Installs: 13 823
Dependents: 10
Suggesters: 0
Security: 0
Stars: 6
Watchers: 5
Forks: 0
Open Issues: 0
Type:package
Requires
- php: ^7.2.0
- ext-json: *
- ext-simplexml: *
- o2system/kernel: *
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