Download .zip |
Info | Documentation | View files (13) | Download .zip | Reputation | Support forum | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2020-01-01 (7 days ago) | Not yet rated by the users | Total: 31 This week: 31 | All time: 9,756 This week: 9 |
Version | License | PHP version | Categories | |||
http-message 1.0 | GNU Lesser Genera... | 5 | HTTP, PHP 5, PSR |
Description | Author | |
This package provides a PSR-7 compliant HTTP request handling. |
|
The Kigkonsult\Http\Message package provide [PSR] server-side
> _Message_ class
> _Stream_ class
> _Response_ class
factoryFromString( content [, streamWrapper [, mode ]] )
* factoryFromResource( resource )
The Response class has an added property:
* rawBody
* response body (type mixed) before serialization/encoding
in parallel with
* (Psr\Http\Message\)ServerRequest::parsedBody
* (Psr\Http\Message\)ServerRequest::body
with corresponding methods:
* getRawBody()
* Return rawBody
* isRawBodyEmpty()
* Return bool true on empty rawBody
* withRawBody()
* Return new instance with rawBody
and two rawBody/body methods
* getResponseBody()
* Return rawBody if not empty else body
* isBodyEmpty()
* Return bool true if (serialized/encoded) body is empty
Two statusCode methods are added:
assertStatusCode()
* (static) validates statusCode, throws InvalidArgumentException on errorisBodyLessResponse()
* Return bool true on statusCode 1xx, 204 or 304[Composer], from the Command Line:
composer require kigkonsult/http-master:dev-master
Composer, in your composer.json
:
{
"require": {
"kigkonsult/http-master": "dev-master"
}
}
Composer, acquire access
<?php
use Kigkonsult\Http\Message\Stream;
use Kigkonsult\Http\Message\Message;
use Kigkonsult\Http\Message\Response;
...
include 'vendor/autoload.php';
Otherwise , download and acquire..
<?php
use Kigkonsult\Http\Message\Stream;
use Kigkonsult\Http\Message\Message;
use Kigkonsult\Http\Message\Response;
...
include 'pathToSource/http-master/autoload.php';
This project is licensed under the LGPLv3 License
[Psr]:https://github.com/php-fig/http-message [Psr\Http\Message\MessageInterface]:https://github.com/php-fig/http-message [Psr\Http\Message\StreamInterface]:https://github.com/php-fig/http-message [Psr\Http\Message\ResponseInterface]:https://github.com/php-fig/http-message [Fig\Http\Message\StatusCodeInterface]:https://github.com/php-fig/http-message-util [Composer]:https://getcomposer.org/
Files |
File | Role | Description | ||
---|---|---|---|---|
docs (2 files) | ||||
src (4 files) | ||||
test (3 files) | ||||
autoload.php | Aux. | Auxiliary script | ||
composer.json | Data | Auxiliary data | ||
phpunit.xml | Data | Auxiliary data | ||
README.md | Doc. | Documentation |
Files | / | src |
File | Role | Description |
---|---|---|
Message.php | Class | Class source |
Response.php | Class | Class source |
ResponseInterface.php | Class | Class source |
Stream.php | Class | Class source |
Files | / | test |
File | Role | Description |
---|---|---|
MessageTest.php | Class | Class source |
ResponseTest.php | Class | Class source |
StreamTest.php | Class | Class source |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.