Skip to content

Releases: php-fig/http-message

Model URIs only, and move alternate request targets to Request's request-line

28 Jan 15:46
Compare
Choose a tag to compare
Merge pull request #18 from weierophinney/feature/uri-refactor

Model URIs and move request-target details to Request

Immutability + URI interface

19 Jan 00:01
Compare
Choose a tag to compare

Immutability + URI interface

0.5.1 - No More Null Streams

04 Nov 14:03
Compare
Choose a tag to compare

0.5.0 - Selective Mutability

03 Nov 14:31
Compare
Choose a tag to compare
  • Refactors MessageInterface to only provide getters.
  • MessageInterface now defines getBody() to require that it return a
    StreamableInterface instance.
  • Removes Request and Response interfaces
  • Provides server-side interfaces:
    • IncomingRequestInterface, which provides accessors for HTTP
      properties and environment-specific items ($_SERVER, $_GET, $_POST,
      $_FILES, $_COOKIE, etc), and support for mutable "attributes".
    • OutgoingResponseInterface, which provides both accessors and
      mutators for all HTTP properties.
  • Provides client-side interfaces:
    • OutgoingRequestInterface, which provides accessors and mutators for
      all HTTP properties.
    • IncomingResponseInterface, which provides accessors for HTTP
      properties.
  • StreamableInterface removes attach().

0.4.0

17 Oct 16:51
Compare
Choose a tag to compare

0.3.0

13 Oct 16:48
Compare
Choose a tag to compare
Merge pull request #4 from weierophinney/feature/psr7-incoming-request

[PSR-7] Updates based on changes to proposal