php-extended / php-http-message-factory-psr17
An implementation of the psr-17 based on the php-http-message-psr7 library
7.0.6
2024-07-31 13:44 UTC
Requires
- php: >=8.0
- php-extended/php-http-message-psr7: ^7
- php-extended/php-uri-parser-object: ^7
- psr/http-factory: ^1
Requires (Dev)
Provides
- dev-master
- 7.0.6
- 7.0.5
- 7.0.4
- 7.0.3
- 7.0.2
- 7.0.1
- 7.0.0
- 6.0.7
- 6.0.6
- 6.0.5
- 6.0.4
- 6.0.3
- 6.0.2
- 6.0.1
- 6.0.0
- 5.0.1
- 5.0.0
- 4.0.1
- 4.0.0
- 3.2.6
- 3.2.5
- 3.2.4
- 3.2.3
- 3.2.2
- 3.2.1
- 3.2.0
- 3.1.19
- 3.1.18
- 3.1.17
- 3.1.16
- 3.1.15
- 3.1.14
- 3.1.13
- 3.1.12
- 3.1.11
- 3.1.10
- 3.1.9
- 3.1.8
- 3.1.7
- 3.1.6
- 3.1.5
- 3.1.4
- 3.1.3
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.0.0
- 1.0.1
- 1.0.0
This package is auto-updated.
Last update: 2024-10-31 00:24:06 UTC
README
An implementation of the psr-17 based on the php-http-message-psr7 library.
Installation
The installation of this library is made via composer and the autoloading of all classes of this library is made through their autoloader.
- Download
composer.phar
from their website. - Then run the following command to install this library as dependency :
php composer.phar php-extended/php-http-message-factory-psr17 ^7
Basic Usage
This library implements the rules of the psr7, which are to be found here.
The interfaces and their implementations are as follows :
Interface | Implementation |
---|---|
Psr\Http\Message\RequestFactoryInterface | PhpExtended\HttpMessage\RequestFactory |
Psr\Http\Message\ResponseFactoryInterface | PhpExtended\HttpMessage\ResponseFactory |
Psr\Http\Message\ServerRequestFactoryInterface | PhpExtended\HttpMessage\ServerRequestFactory |
Psr\Http\Message\StreamFactoryInterface | PhpExtended\HttpMessage\StreamFactory |
Psr\Http\Message\UploadedFileFactoryInterface | PhpExtended\HttpMessage\UploadedFileFactory |
Psr\Http\Message\UriFactoryInterface | PhpExtended\HttpMessage\UriFactory |
License
MIT (See license file).