PHPackages                             eva/http-request - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [HTTP &amp; Networking](/categories/http)
4. /
5. eva/http-request

ActiveLibrary[HTTP &amp; Networking](/categories/http)

eva/http-request
================

Common interface for HTTP messages

0220PHP

Since Dec 14Pushed 5mo ago1 watchersCompare

[ Source](https://github.com/thewarmthofyourhands/http-request)[ Packagist](https://packagist.org/packages/eva/http-request)[ RSS](/packages/eva-http-request/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Native Request
==============

[](#native-request)

The library provides interaction over the HTTP protocol

The basis is a model of Http packets. However, it does not support psr and should not be used at all.

The library consists of:

1. HTTP message builders for both request and response
2. Parsers that allow you to quickly pull out of HTTP messages data in a format that is easy to process
3. RequestSender - implementation of sending and receiving messages (low-level sending via socket is used)
4. A simple Client and a wrapper either for simple native requests or for creating full-fledged Request services (Examples are in the example folder)

### INSTALLATION

[](#installation)

1. add "minimum-stability": "dev" in your composer file
2. install

```
composer require "eva/http-request"

```

### Simple example:

[](#simple-example)

```
