Skip to content

Releases: Rehyved/php-http-client

Configuration & Documentation

23 Jun 14:27
Compare
Choose a tag to compare
Pre-release

In this release the documentation of the different classes has been updated.

In addition it is now possible to override default configuration for:

  • SSL certificate verification (enable/disable)
  • Request timeouts
  • Default request headers

Support for disabling SSL certificate verification

18 Jun 19:12
Compare
Choose a tag to compare

It is now possible to disable the verification of SSL certificates when using HttpRequest.
This can be done by using the following syntax HttpRequest::create("url")->verifySslCertificates(false).

Support for multipart file uploads

11 Nov 12:02
Compare
Choose a tag to compare
Pre-release

File uploads where not possible due to default conversion to a application/x-www-form-urlencoded body. This has now been changed and the HttpRequest::post(string $path, $body) function can now be used to upload files.

Updated dependencies and namespaces

18 Sep 18:47
Compare
Choose a tag to compare
Pre-release

Updated dependencies to newest versions and updated namespaces

Initial pre-release. basic functionality in place

16 Jul 18:34
Compare
Choose a tag to compare

This pre-release includes basic functionality:

  • Cookies
  • Headers
  • JSON body
  • multipart body
  • urlencoded body
  • query parameters
  • authorization
  • basic authentication
  • redirects

This release also includes some helper libraries which will be moved to a separate repo later.