chillerlan/psr-7

A PSR-7 HTTP message and PSR-17 HTTP factory implementation.

1.0.0 2024-03-09 21:37 UTC

This package is auto-updated.

Last update: 2024-04-10 06:04:41 UTC


README

A PSR-7/PSR-17 HTTP message and factory implementation.

PHP Version Support Packagist version License Continuous Integration CodeCov Codacy Packagist downloads

Overview

Features

Requirements

Documentation

The documentation of the PSR-7 interfaces can be found over at https://www.php-fig.org/psr/psr-7/.

NOTE: This library has abandoned the paranoid "value object" "immuatbility" that is dictated by PSR-7 for it is horseshit. The pseudo-immutability gets in the way more often (always) than it is useful (never) and creates endless overhead. If you want your objects to be immutable for whatever reason, just fucking clone them and don't force countless libraries to do that for you instead. If you don't like it, just use Guzzle instead (spoiler: you won't notice the difference).

Further, this library still only implements psr/http-message v1.1, as the v2.0 release (06/2023) has return types added that conflict with the static return type that was introduced in PHP 8 (11/2020).

Auto generated API documentation

The API documentation can be auto generated with phpDocumentor. There is an online version available via the gh-pages branch that is automatically deployed on each push to main.

Locally created docs will appear in .build/phpdocs/. If you'd like to create local docs, please follow these steps:

  • download phpDocumentor v3+ as .phar archive
  • run it in the repository root directory:
    • on Windows c:\path\to\php.exe c:\path\to\phpDocumentor.phar --config=phpdoc.xml
    • on Linux just php /path/to/phpDocumentor.phar --config=phpdoc.xml
  • open index.html in a browser
  • profit!

Disclaimer

Use at your own risk!