Skip to content
This repository has been archived by the owner on Feb 2, 2021. It is now read-only.

phapi/http

Repository files navigation

HTTP Message

Build status Code Climate Test Coverage

HTTP Message is an implementation of PSR-7 with some additional complementary methods to simplify the usage of the request and response objects.

This package extends zendframework/zend-diactoros.

Installation

The package is installed by default by the Phapi framework. Installing the package to use is separately can be done by using composer:

$ composer require phapi/http:1.*

Usage

Phapi is PSR-7 compliant but does not implement the interfaces itself, instead Phapi depends on the zend-diactoros implementation. See the PSR-7 interfaces for more information about how to use them:

Extended methods

Body

Use the withUnserializedBody(array $data) method on the response object to add or modify the body. The serializer middleware will then serialize the body and set the serialized string as the response body.

License

Phapi HTTP Message is licensed under the MIT License - see the license.md file for details

Contribute

Contribution, bug fixes etc are always welcome.