Packages from quioteframework · Transparency log
-
PHP
quioteframework/auth
Authentication foundation (form login, HTTP Basic, password hashing, user providers, firewalls) for Quiote.
-
PHP
quioteframework/auth-jwt
Bearer/JWT resource-server authentication (JWS verification, JWKS, RFC 9068 client-type resolution) for Quiote, built on firebase/php-jwt.
-
PHP
quioteframework/auth-oauth
OAuth 2.1 client (auth-code + PKCE, OIDC discovery, ID-token validation) and Client Credentials (M2M) support for Quiote.
-
PHP
quioteframework/cloud-azure
Minimal Azure Blob and Table Storage clients, Shared Key or Azure AD (workload identity / az login) authenticated REST access with no azure-sdk dependency, plus a signed-request method for operations they do not model themselves. Framework-agnostic (built on quioteframework/storage, not the Quiote f
-
PHP
quioteframework/cloud-gcs
Minimal Google Cloud Storage client, HMAC-signed get/put/delete/head/list against a single bucket via the S3-compatible interoperability API, plus a signed-request method for operations it does not model itself. Framework-agnostic (built on quioteframework/storage, not the Quiote framework itself) a
-
PHP
quioteframework/cloud-s3
Minimal AWS S3 REST client, SigV4-signed get/put/delete/head/list against a single bucket, with no aws-sdk-php dependency, plus a signed-request method for operations it does not model itself. Framework-agnostic (built on quioteframework/storage, not the Quiote framework itself) and usable outside a
-
-
PHP
quioteframework/csrf
CSRF protection (token validation + delivery middleware) for Quiote, built on symfony/security-csrf.
-
-
-
PHP
quioteframework/db-eloquent
Eloquent (illuminate/database) driver adapter for Quiote's database layer.
-
PHP
quioteframework/db-propulsion
Propulsion (Propel 1 fork) driver adapter for Quiote's database layer.
-
PHP
quioteframework/docs
Generates the framework's API reference from reflection and docblocks as Markdown pages for the Astro/Starlight documentation site (`docs:api`). Development tooling, not part of the request path.
-
PHP
quioteframework/exception-notifier
Exception notification plugin for Quiote: Microsoft Teams (Adaptive Card) and generic webhook channels, with an extendable channel driver seam.
-
PHP
quioteframework/filesystem
Quiote's filesystem subsystem: FilesystemAdapterInterface/ListableFilesystemInterface, FilesystemManager, FilesystemDriverRegistry, LocalFilesystemAdapter, the object-store-backed adapter base classes cloud filesystem drivers extend, and ObjectStoreSessionPersistence, the equivalent base for cloud s
-
PHP
quioteframework/filesystem-azure
Azure Blob Storage filesystem adapter built on the AzureBlobClient from quioteframework/cloud-azure. Framework-agnostic: depends only on cloud-azure, so it is usable outside a Quiote application too. Quiote\Filesystem\Azure\AzureFilesystemAdapter/AzureFilesystemPlugin additionally implement Quiote's
-
PHP
quioteframework/filesystem-gcs
Google Cloud Storage filesystem adapter built on the GcsClient from quioteframework/cloud-gcs. Framework-agnostic: depends only on cloud-gcs, so it is usable outside a Quiote application too. Quiote\Filesystem\Gcs\GcsFilesystemAdapter/GcsFilesystemPlugin additionally implement Quiote's FilesystemAda
-
PHP
quioteframework/filesystem-s3
AWS S3 filesystem adapter built on the S3Client from quioteframework/cloud-s3. Framework-agnostic: depends only on cloud-s3, so it is usable outside a Quiote application too. Quiote\Filesystem\S3\S3FilesystemAdapter/S3FilesystemPlugin additionally implement Quiote's FilesystemAdapterInterface for Fi
-
PHP
quioteframework/mcp
MCP (Model Context Protocol) server capability for Quiote -- expose Quiote actions/tools over MCP.
-
-
PHP
quioteframework/propulsion
Propulsion is an object-relational mapping (ORM) for PHP, forked from Propel 1.
-
PHP
quioteframework/queue
Background job/queue abstraction (job interface, sync driver, retry/dead-letter handling, queue:work console command) for Quiote.
-
PHP
quioteframework/queue-db
DB-backed queue driver and dead-letter store for Quiote's queue subsystem, using the app's own database via PDO.
-
PHP
quioteframework/queue-redis
Redis-backed queue driver for Quiote's queue subsystem, using predis/predis.
-
PHP
quioteframework/quiote
Quiote is a full-featured MVC-style framework for PHP 8.5+ with a strong focus on structure, code reusability and flexibility.
-
PHP
quioteframework/quiote-mcp-assistant
MCP server giving AI agents authoritative knowledge of, and read-only/scaffolding access to, Quiote applications.
-
PHP
quioteframework/ratelimit
Rate limiting (login throttle, PDO-backed limiter storage) for Quiote, built on symfony/rate-limiter.
-
PHP
quioteframework/rector
Rector rules for migrating an application off Quiote's Context accessors onto injected collaborators.
-
PHP
quioteframework/replay
Record → replay → regression test: a cassette format/store, a request recorder middleware, cassette:list/cassette:show console commands, and an effect ledger with per-subsystem recording/stub seams (database, HTTP client, cache, queue, env) for Quiote.
-
PHP
quioteframework/replay-azure
Azure Blob Storage cassette store for quioteframework/replay: the production target for an AKS + Azure Blob + Log Analytics deployment.
-
PHP
quioteframework/replay-cycle
Cycle (cycle/database) effect recorder for quioteframework/replay: a PSR-3 logger that appends one effect-ledger entry per successful query.
-
PHP
quioteframework/replay-doctrine
Doctrine DBAL effect recorder for quioteframework/replay: a driver middleware that appends one effect-ledger entry per query.
-
PHP
quioteframework/replay-eloquent
Eloquent (illuminate/database) effect recorder for quioteframework/replay: records one effect-ledger entry per query via the QueryExecuted event.
-
PHP
quioteframework/replay-pdo
PDO-backed cassette store for quioteframework/replay: keeps recorded cassettes in the app's own database instead of a pod's ephemeral filesystem.
-
PHP
quioteframework/replay-propulsion
Propulsion effect recorder for quioteframework/replay: records every query into a request's cassette effect ledger, with bound-parameter and captured-row redaction.
-
PHP
quioteframework/replay-storage
Object-store-backed cassette store for quioteframework/replay, built on the framework-free quioteframework/storage contracts (any ListableObjectStoreClientInterface -- Azure Blob, S3, GCS).
-
PHP
quioteframework/scheduler
Cron-expression task scheduling (schedule:run console command) layered on the queue package, for Quiote.
-
PHP
quioteframework/security-headers
Security response headers (CSP, X-Frame-Options, HSTS, etc.) middleware for Quiote.
-
PHP
quioteframework/session-azure
Azure Blob Storage and Table Storage session backends for Quiote — SessionPersistenceInterface implementations for SessionManager, backed by minimal Shared-Key REST clients (no official SDK dependency).
-
PHP
quioteframework/session-gcs
Google Cloud Storage session backend for Quiote — a SessionPersistenceInterface implementation for SessionManager, backed by a minimal HMAC-key REST client (no google/cloud-storage dependency).
-
PHP
quioteframework/session-pdo
PDO-backed session storage for Quiote: a SessionPersistenceInterface implementation for SessionManager, plus a native SessionHandlerInterface implementation for the legacy Storage subsystem.
-
PHP
quioteframework/session-redis
Redis-backed session storage for Quiote: a SessionPersistenceInterface implementation for SessionManager, built on predis/predis.
-
PHP
quioteframework/session-s3
AWS S3 session backend for Quiote — a SessionPersistenceInterface implementation for SessionManager, backed by a minimal SigV4 REST client (no aws-sdk-php dependency).
-
PHP
quioteframework/storage
Framework-agnostic object-store contracts for Quiote: ObjectStoreClientInterface, ListableObjectStoreClientInterface, ObjectMetadata, ObjectListing, ObjectSummary and ObjectStoreException. No dependency on quioteframework/quiote, so a REST client built against these types (cloud-azure, cloud-s3, clo
-
PHP
quioteframework/telemetry-dashboard
TUI dashboard + minimal OTLP/HTTP receiver for Quiote (`telemetry:dashboard` console command). A standalone process, not part of the request path.
-
PHP
quioteframework/telemetry-otel
OpenTelemetry SDK exporter/bootstrap for Quiote's always-on Trace facade. Builds worker-lifetime tracer/meter providers from telemetry.* settings and flushes them per request.
-
-
PHP
quioteframework/whoops
Full-detail developer exception renderer for Quiote, built on filp/whoops. Only ever used when core.developer_exceptions is explicitly enabled.
-
PHP
quioteframework/worker-roadrunner
RoadRunner worker runtime for Quiote, turning `Kernel::run()` into a RoadRunner PSR-7 worker loop.
-
PHP
quioteframework/worker-swoole
Swoole worker runtime for Quiote, serving the app from an embedded Swoole HTTP server.
-