Libraries tagged by processout
pixielity/stub-generator
557 Downloads
A powerful, fluent stub template processor for PHP with support for placeholders and optional sections
monkeyscloud/monkeyslegion-logger
2085 Downloads
High-performance, zero-dependency PSR-3 logger for MonkeysLegion with structured logging, handlers, processors, and PHP 8.4 features.
mnvx/eloquent-print-form
612 Downloads
Print form processor for Eloquent
ml/hydra-bundle
1031 Downloads
JSON-LD Processor for PHP
malc0mn/haproxy-config-builder
706 Downloads
HAProxy config file builder and processor.
macbre/monolog-utils
13231 Downloads
Additional formatters and processors for Monolog
laravel-enso/monitored-emails
649 Downloads
Email monitor and processor for Laravel Enso
iamntz/handlebars.php
4607 Downloads
Handlebars processor for php
iainconnor/cornucopia
407 Downloads
Expanded Annotation processor.
guest-one/php-tar-streamer
1063 Downloads
TarStreamer — stream-based tar processor
genai/web
114 Downloads
Web/MVC layer over genai/http: #[Controller]/#[RestController] (with a base path) and #[Route] attributes, a View value object, a default genai/view engine (override with #[ViewRegister]), and a dispatcher. Routes compile to genai/routing's standalone matcher. Runtime is PHP 5.3-safe; the attributes/processors are PHP 8 build-time.
genai/validation
94 Downloads
Attribute-based validation compiled to a reflection-free validator. Put #[NotBlank]/#[Email]/#[Length]/#[Pattern]/#[Matches] on a #[Validate] form class; a build-time processor bakes the rules into Cache\Validation. At runtime, validate a populated form object -> a field=>error map, no reflection. PHP 5.3-safe runtime.
genai/trace
111 Downloads
Request correlation IDs for centralized logging. A TraceInterceptor reads X-Request-Id (or generates one), exposes it via a TraceContext bean + a global trace_id(), echoes it on the response, and a Monolog processor stamps it on every log line. PHP 5.3-safe at runtime.
genai/sql-mapper
110 Downloads
MyBatis-style SQL mapper: mark an interface #[Mapper] and its methods #[Select]/#[Insert]/#[Update]/#[Delete] with the SQL. A build-time processor compiles a reflection-free Cache\ implementation (prepared statements, #{name} bound params, optional row->object hydration) and registers it as a container bean keyed by the interface. Self-contained: a bundled DatabaseConfig provides the 'PDO' bean from a [database] group in the app's app.ini, so you only edit config. Runtime is PHP 5.3-safe.
genai/dto
93 Downloads
DTO support: a #[Dto] attribute, a build-time processor that compiles each DTO's getters into a JSON map, and a PHP 5.3-safe Serializer that turns DTOs (and nested/arrays of them) into arrays via that map — no runtime reflection, no toArray(). Standalone: no runtime dependencies.