Download the PHP package phprise/http-value-object without Composer
On this page you can find all versions of the php package phprise/http-value-object. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download phprise/http-value-object
More information about phprise/http-value-object
Files in phprise/http-value-object
Package http-value-object
Short Description Atomic Repository for Value Object of HTTP Connector based on the OTAKU Manifesto.
License MIT
Informations about the package http-value-object
phprise/http-value-object
The Atomic Repository is the smallest possible unit of granularity. It enforces a strict architectural boundary through the following rules:
- No Subdirectories: Only one level of directory inside src/.
- Maximum 10 Files: Only 10 files per package.
- Strict Typing: Mandatory
declare(strict_types=1)and full type hinting for all properties and methods. - Object Calisthenics: Maximum of 50 lines per class and 2 instance variables to ensure extreme cohesion.
- Value Objects: All primitives must be wrapped. Raw strings or integers are not permitted in domain logic.
- First Class Collections: Arrays are forbidden for data transport; use dedicated Collection objects.
- Tell, Don't Ask: Getters and setters are prohibited. Objects must expose behavior, not state.
- Infrastructure Ignorance: The domain core is decoupled from persistence, frameworks, and external tools.
- Logic Flow: The
elsekeyword is banned. Use guard clauses and early returns to minimize indentation.
Installation
Install the package via Composer:
Usage
This repository provides fundamental HTTP value objects. It is an Atom, designed to be immutable, strictly typed, and free of complex business logic.
Headers
Headers are handled strictly. All names are normalized to lowercase.
Uri
A robust implementation of Psr\Http\Message\UriInterface.
[!TIP] This atom is meant to be split into even smaller units as the system evolves, ensuring that each component contains zero complex logic and serves only as a structured data container.
Available Components
- Headers: Immutable collection of HTTP headers with normalization.
- Uri: Robust PSR-7 compliant URI implementation.
- Streams:
NativeStream,JsonStream, andEmptyStreamfor payload handling. - NativeResponse: Simple wrapper for native PHP response handling.
- RequestContext: Value object to encapsulate HTTP request metadata.
Philosophy
We follow The OTAKU Manifesto: Fluid Structure Design.
- O - Own your Discipline (Be strict with yourself)
- T - Tools for Composition (Compose like Unix)
- A - Armor the Core (Protect the heart of the business)
- K - Keep Infrastructure Silent (Infrastructure is just a detail)
- U - Universal Language & Contracts (Speak the user's language via clear contracts)
Please read more about it in PHILOSOPHY.md.
License
MIT License
Free to use, modify, and distribute.
All versions of http-value-object with dependencies
phprise/http-contract Version ^1.0
phprise/common Version ^2.0
psr/http-message Version ^2.0
phprise/data-transfer-object Version ^1.1