create-psr7-http-message
PSR-7 HTTP Message Generator
Overview
Generates PSR-7 compliant HTTP message implementations following Psr\Http\Message interfaces.
When to Use
- Building custom HTTP framework
- Creating lightweight HTTP message handling
- Need for immutable request/response objects
- Testing HTTP interactions
Generated Components
| Component | Interface | Location |
|---|---|---|
| Request | RequestInterface |
src/Infrastructure/Http/Message/ |
| Response | ResponseInterface |
src/Infrastructure/Http/Message/ |
| ServerRequest | ServerRequestInterface |
src/Infrastructure/Http/Message/ |
| Stream | StreamInterface |
src/Infrastructure/Http/Message/ |
| Uri | UriInterface |
src/Infrastructure/Http/Message/ |
| UploadedFile | UploadedFileInterface |
src/Infrastructure/Http/Message/ |
Quick Template: Response
<?php
declare(strict_types=1);
namespace App\Infrastructure\Http\Message;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\StreamInterface;
final readonly class Response implements ResponseInterface
{
private const PHRASES = [
200 => 'OK', 201 => 'Created', 204 => 'No Content',
400 => 'Bad Request', 401 => 'Unauthorized', 403 => 'Forbidden',
404 => 'Not Found', 500 => 'Internal Server Error',
];
public function __construct(
private int $statusCode = 200,
private string $reasonPhrase = '',
private array $headers = [],
private StreamInterface $body = new Stream(''),
private string $protocolVersion = '1.1',
) {}
public function getStatusCode(): int { return $this->statusCode; }
public function getReasonPhrase(): string { return $this->reasonPhrase; }
public function getHeaders(): array { return $this->headers; }
public function getBody(): StreamInterface { return $this->body; }
public function withStatus(int $code, string $reasonPhrase = ''): static
{
return new self($code, $reasonPhrase ?: (self::PHRASES[$code] ?? ''),
$this->headers, $this->body, $this->protocolVersion);
}
public function withHeader(string $name, $value): static
{
$headers = $this->headers;
$headers[strtolower($name)] = is_array($value) ? $value : [$value];
return new self($this->statusCode, $this->reasonPhrase, $headers,
$this->body, $this->protocolVersion);
}
public function withBody(StreamInterface $body): static
{
return new self($this->statusCode, $this->reasonPhrase,
$this->headers, $body, $this->protocolVersion);
}
// ... other MessageInterface methods
}
Usage Example
<?php
use App\Infrastructure\Http\Message\Response;
use App\Infrastructure\Http\Message\Stream;
// Create response
$response = new Response(200);
$response = $response
->withHeader('Content-Type', 'application/json')
->withBody(new Stream(json_encode(['status' => 'ok'])));
// Read response
echo $response->getStatusCode(); // 200
echo $response->getHeaderLine('Content-Type'); // application/json
echo (string) $response->getBody(); // {"status":"ok"}
Requirements
{
"require": {
"psr/http-message": "^2.0"
}
}
See Also
references/templates.md- Full Response, Stream, Uri, Request, ServerRequest, UploadedFile templatesreferences/examples.md- Integration examples
More from dykyi-roman/awesome-claude-code
psr-overview-knowledge
PHP Standards Recommendations (PSR) overview knowledge base. Provides comprehensive reference for all accepted PSRs including PSR-1,3,4,6,7,11,12,13,14,15,16,17,18,20. Use for PSR selection decisions and compliance audits.
22detect-code-smells
Detects code smells in PHP codebases. Identifies God Class, Feature Envy, Data Clumps, Long Parameter List, Long Method, Primitive Obsession, Message Chains, Inappropriate Intimacy. Generates actionable reports with refactoring recommendations.
15clean-arch-knowledge
Clean Architecture knowledge base. Provides patterns, antipatterns, and PHP-specific guidelines for Clean Architecture and Hexagonal Architecture audits.
15ddd-knowledge
DDD architecture knowledge base. Provides patterns, antipatterns, and PHP-specific guidelines for Domain-Driven Design audits.
14testing-knowledge
Testing knowledge base for PHP 8.4 projects. Provides testing pyramid, AAA pattern, naming conventions, isolation principles, DDD testing guidelines, and PHPUnit patterns.
12bug-root-cause-finder
Root cause analysis methods for PHP bugs. Provides 5 Whys technique, fault tree analysis, git bisect guidance, and stack trace parsing.
12