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 for Quiote — SharedKey-signed REST access with no azure-sdk dependency, plus a signed-request method for operations they do not model themselves. Shared by the Azure session and filesystem backends.

  • PHP

    quioteframework/cloud-gcs

    Minimal Google Cloud Storage client for Quiote — HMAC-signed get/put/delete/head against a single bucket via the S3-compatible interoperability API, plus a signed-request method for operations it does not model itself. Shared by the GCS session and filesystem backends.

  • PHP

    quioteframework/cloud-s3

    Minimal AWS S3 REST client for Quiote — SigV4-signed get/put/delete/head against a single bucket, with no aws-sdk-php dependency, plus a signed-request method for operations it does not model itself. Shared by the S3 session and filesystem backends.

  • PHP

    quioteframework/cors

    CORS middleware (preflight handling + response headers) for Quiote.

  • PHP

    quioteframework/csrf

    CSRF protection (token validation + delivery middleware) for Quiote, built on symfony/security-csrf.

  • PHP

    quioteframework/db-cycle

    Cycle ORM driver adapter for Quiote's database layer.

  • PHP

    quioteframework/db-doctrine

    Doctrine ORM and DBAL driver adapters for Quiote's database layer.

  • 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/filesystem-azure

    Azure Blob Storage filesystem adapter for Quiote — a Quiote\Filesystem\FilesystemAdapterInterface implementation for FilesystemManager, built on the AzureBlobClient from quioteframework/cloud-azure.

  • PHP

    quioteframework/filesystem-gcs

    Google Cloud Storage filesystem adapter for Quiote — a Quiote\Filesystem\FilesystemAdapterInterface implementation for FilesystemManager, built on the GcsClient from quioteframework/cloud-gcs.

  • PHP

    quioteframework/filesystem-s3

    AWS S3 filesystem adapter for Quiote — a Quiote\Filesystem\FilesystemAdapterInterface implementation for FilesystemManager, built on the S3Client from quioteframework/cloud-s3.

  • PHP

    quioteframework/mcp

    MCP (Model Context Protocol) server capability for Quiote -- expose Quiote actions/tools over MCP.

  • PHP

    quioteframework/phptal

    PHPTAL (.tal) template renderer for Quiote, built on phptal/phptal.

  • 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/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/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/twig

    Twig (.twig) template renderer for Quiote, built on twig/twig.

  • 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.

  • PHP

    quioteframework/xslt

    XSLT (.xsl) template renderer for Quiote, built on ext-xsl/ext-dom.