Packages from lombokclarion · Transparency log
-
PHP
lombokclarion/active-record
Optional ActiveRecord pattern for LombokClarion. Explicitly isolated from core and domain layer (§2.6, §4.12). MUST NOT leak into app/Domain/**.
-
-
PHP
lombokclarion/auth
Official, non-core auth package: stateless HMAC session tokens, Authenticate/Authorize middleware, and hand-registered RBAC policies. No static Auth::user(), no attribute scanning.
-
PHP
lombokclarion/bus
Explicit CommandBus, QueryBus, and EventBus for LombokClarion. One handler per command/query, explicitly registered; no auto-discovery.
-
PHP
lombokclarion/config
Typed config compiler: turns a schema + environment into a tree of readonly PHP classes ($config->mail->smtp->host), never array-soup config('a.b.c').
-
PHP
lombokclarion/console
Explicit CLI kernel for LombokClarion, plus built-in migrate/optimize/audit:sql/audit:security commands.
-
PHP
lombokclarion/container
Explicit, compile-checked dependency injection container for LombokClarion. No auto-discovery of interface bindings; zero reflection at request time once compiled.
-
PHP
lombokclarion/facades
Optional static-accessor facades for LombokClarion. Explicitly isolated from core and domain layer (§2.6, §4.12). MUST NOT leak into app/Domain/**.
-
lombokclarion/framework
One-require metapackage that installs the full LombokClarion runtime stack. Requiring this IS the explicit opt-in for the whole framework; individual packages still never pull each other's optional pieces transitively.
-
PHP
lombokclarion/http
Immutable Request/Response value objects, Middleware contract, RequestContext, and tenancy for LombokClarion.
-
PHP
lombokclarion/i18n
Explicit internationalization for LombokClarion: locale catalogs are plain PHP files listed in a manifest, never directory-scanned. Parameter interpolation, count-based pluralization, fallback locale.
-
PHP
lombokclarion/laravel-flavor
Optional preset: the entire 'magic' surface (facades, ActiveRecord connection, default middleware) enabled by ONE greppable bootstrap call. Isolated from app/Domain/** via forbidden-layers.
-
PHP
lombokclarion/log
Structured logging: levels, channels, handlers, formatters, and non-optional context redaction. No global logger and no static facade — a Logger is constructor-injected like every other service.
-
PHP
lombokclarion/persistence
QueryBuilder (bound parameters only), SchemaBuilder, and an explicit-manifest MigrationRunner for LombokClarion.
-
PHP
lombokclarion/phpstan-rules
PHPStan extension distributing LombokClarion's audit rules (§7): no interpolated/concatenated SQL into PDO query/prepare/exec, and no LombokClarion imports inside app/Domain.
-
PHP
lombokclarion/routing
Explicit route table, middleware pipeline, Kernel, and runtime adapters (FPM/Function/Swoole) for LombokClarion.
-
PHP
lombokclarion/security
Official, non-core security package: Argon2id hashing, stateless CSRF, RateLimit, SecurityHeaders, Encrypted<T> field wrapper, and FormRequest validation.
-
PHP
lombokclarion/storage
File storage behind relative, traversal-validated paths. Local filesystem only — cloud drivers are separate packages depending on the Storage interface, never core dependencies.
-
PHP
lombokclarion/testing
Test helpers for LombokClarion: InMemoryRepository, FakeCommandBus/FakeEventBus, HttpTestCase, ConsoleTestCase, and the ColdStartTest budget check.
-
PHP
lombokclarion/validation
FormRequest validation with a typed rule vocabulary — no pipe-string DSL, explicit DTO mapping, violations rendered through i18n.
-
PHP
lombokclarion/view
Blade-like template compiler for LombokClarion. Auto-escaping by default; {!! !!} is the explicit, audit-flagged opt-out.