Download the PHP package originphp/http-client without Composer

On this page you can find all versions of the php package originphp/http-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package http-client

HTTP Client

license build coverage

The HTTP client is a simple yet very powerful utility for making HTTP requests.

Installation

To install this package

Sending Requests

Get Request

To send a GET request

The full list of options are detailed below.

Head Request

To make HEAD request, where the body of the request is not fetched.

Post Request

To send a POST request. In REST terms post requests are used to create a record.

To upload files using a post request.

Put Request

To send a PUT request. In REST terms put requests are used to modify a record with complete data (overwriting).

Patch Request

To send a PATCH request. In REST terms patch requests are used to modify an existing record with partial data.

Delete Request

To send a DELETE request.

HTTP Request Options

The available options when making requests are

Configuring the Http Client

You configure Http client so that you don't have to keep on passing options which makes code longer and more prone to errors.

This is particularly useful when working with multiple requests in an instance. Any options passed when creating the instance will be used as default for each request, unless you specify something else during the request.

Other options:

Exceptions (version ^2.0)

In 2.0 various exceptions have been added, and a HTTP protocol error handler has also been added. All exceptions from the http client extend the HttpClientException class.

Request Exceptions

In the event of connection issues (DNS, timeout etc), a ConnectionException will be thrown, and a TooManyRedirectsException will be thrown on redirect loops, and any other cURL error will trigger a generic RequestException.

HTTP Protocol Exceptions

By default any 4xx and 5xx errors will throw either ClientErrorException or ServerErrorException which both extend the HttpException class.

This behavior can be disabled by setting httpErrors to false when creating the Http instance.

To catch HTTP protocol errors

Working with Responses

When you make a HTTP request, a Response object is returned.

Cookies

By default cookies are persisted across all requests for the instance.

To change this behavior use the cookieJar option.

cURL Options

Occasionally, you might need to set additional cURL options, one example of this, is when there is an issue with SSL certificates. You can set cURL options with the CURLOPT constant or string version of it.

To set these as default for settings for all the requests, configure it when creating the Http instance.

Downloading a file

To download a file

Setting Cookies

To set a cookie

User Authentication

The available authentication types are basic, digest, nltm or any.

Using a Proxy

To send a HTTP request using a proxy server.


All versions of http-client with dependencies

PHP Build Version
Package Version
Requires php Version >=7.3.0
originphp/xml Version ^2.0
ext-curl Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package originphp/http-client contains the following files

Loading the files please wait ....