usox / hackttp

PSR7-like http request/response management

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status

HackTTP

This is a (currently unstable) implementation of hack-http-request-response-interfaces to allow type-safe access to http requests.

Usage

Creating a server request object containing the request data:

  $server_request = \Usox\HackTTP\createServerRequestFromGlobals();

Creating a response:

  $response = \Usox\HackTTP\createResponse(200, 'Up and at them');

Creating an uri:

  $uri = \Usox\HackTTP\createUri('https://some-uri.com');

HackTTP also provides a set of factories to create the various classes. Those factories implement the hack-http-factory interfaces.

Inspired by guzzles psr7 implementation

About

PSR7-like http request/response management

License:MIT License


Languages

Language:Hack 99.5%Language:Shell 0.5%