phprise / http-contract
This is an Atomic Repository based on the OTAKU Manifesto.
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 1
Open Issues: 0
pkg:composer/phprise/http-contract
Requires
- php: ^8.4
- phprise/common-value-object: ^1.0
- phprise/data-transfer-object: ^1.1
- psr/http-message: ^2.0
Requires (Dev)
- phpunit/phpunit: ^12.5
- vimeo/psalm: ^6.14
README
This is an Atomic Repository based on the OTAKU Manifesto.
The objective of this repository is to provide a standardized set of HTTP request interfaces for the PHPRise ecosystem, ensuring consistent behavior across different connectors and adapters.
Installation
composer require phprise/http-contract
Usage
These interfaces define the structure for specialized HTTP requests (Store, Update, List, etc.).
use Phprise\Http\Contract\StoreRequestInterface; use Phprise\DataTransferObject\TransferObjectInterface; class MyStoreRequest implements StoreRequestInterface { public function payload(): TransferObjectInterface { // implementation } // ... Psr\Http\Message\RequestInterface implementation }
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.
Contributing
See how to contribute in CONTRIBUTING.md.
Code of Conduct
See our code of conduct in CODE_OF_CONDUCT.md.
Security
See our security policy in SECURITY.md.