phapi/http

This package is abandoned and no longer maintained. No replacement package was suggested.

Phapi HTTP Message is an implementation of PSR-7 used by the Phapi framework

1.0.0 2015-07-02 08:13 UTC

This package is not auto-updated.

Last update: 2021-02-05 22:08:13 UTC


README

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.