phapi / http
Phapi HTTP Message is an implementation of PSR-7 used by the Phapi framework
Installs: 1 921
Dependents: 3
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=5.6.0
- phapi/contract: 1.*
- psr/http-message: 1.*
- zendframework/zend-diactoros: 1.*
Requires (Dev)
- codeclimate/php-test-reporter: dev-master
- phpunit/phpunit: 4.*
This package is not auto-updated.
Last update: 2021-02-05 22:08:13 UTC
README
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:
- Psr\Http\Message\ServerRequestInterface
- Psr\Http\Message\ResponseInterface
- Psr\Http\Message\UriInterface
- Psr\Http\Message\StreamInterface
- Psr\Http\Message\UploadedFileInterface
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.