filbertkm/httplib

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

Lightweight http library

Maintainers

Package info

github.com/filbertkm/HttpLib

pkg:composer/filbertkm/httplib

Statistics

Installs: 31

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 1

0.2 2016-06-18 17:36 UTC

This package is not auto-updated.

Last update: 2026-03-09 13:19:13 UTC


README

Build Status

Small php wrapper library around curl.

Usage

$url = 'http://www.openstreetmap.org/api/0.6/capabilities';

$httpClient = new HttpClient( 'HttpClientBot', 'http-client-test' );
$response = $httpClient->get( $url );

Returns response as a string, if successful, or false.

Also supports post and multipart requests.

License

Release notes

0.2

  • Added download method.