[commits] [Wiki] created: Doc/Dev/Horde_Http
Ralf Lang (B1 Systems GmbH)
lang at b1-systems.de
Fri Jul 16 19:00:52 UTC 2021
rlang Fri, 16 Jul 2021 19:00:52 +0000
Created page: https://wiki.horde.org/Doc/Dev/Horde_Http
+ Horde_Http
Horde_Http is a HTTP library.
++ Horde_Http up to Horde 5
The library concentrates on implementing a client making requests and
providing http responses in a unified, horde-proprietary interface.
Under the hood, requests and responses are implemented using various
technologies, if available:
- curl extension
- fopen
- pecl/http 1.x (unnamespace)
- pecl/http 2.x/3.x (namespaced)
Code is PHP 5 compatible, unnamespaced and PSR-0 autoloadable
+++ Example usage
TODO
++ Horde_Http in Horde 6
In Horde 6, Horde_Http is redesigned. It now adheres to various
standards proposed by the PHP Framework Interoperability Group.
- [https://www.php-fig.org/psr/psr-7/ PSR-7] compatible versions of
Request, ServerRequest, Response, Uri, Stream and UploadedFile
- [https://www.php-fig.org/psr/psr-17/ PSR-17] compatible versions of
RequestFactory, ServerRequestFactory, ResponseFactory, UriFactory,
StreamFactory and UploadedFileFactory
- [https://www.php-fig.org/psr/psr-18/ PSR-18] compatible HTTP Client
implementations for Curl, Fopen and pecl/http (v2+)
Horde_Http code is also the basis of the new
[Doc/Dev/Horde_Http_Server Horde_Http_Server], a successor to
[Doc/Dev/Horde_Controller Horde_Controller].
+++ Example usage
TODO
More information about the commits
mailing list