illuminate/redis
Illuminate Redis provides Laravel’s Redis integration, delivering cache, queue, session, and pub/sub support via a simple API. Works with PhpRedis or Predis, supports clusters and connections, and plugs into the framework’s Cache and Queue systems.
Architecture fit is limited to Laravel ecosystem projects, as this package is a read-only subtree split of laravel/framework and not designed for standalone use. It depends on other illuminate components (collections, contracts, etc.), making it tightly coupled to Laravel's architecture. Integration feasibility is high only within Laravel projects (where it's already included by default), but low for non-Laravel applications due to unnecessary dependency bloat and lack of standalone support. Technical risks include potential version mismatches if manually installed outside Laravel, untested edge cases in standalone scenarios, and no active maintenance guarantees for standalone usage (evidenced by 0 dependents). Key questions: Why use this standalone when Laravel includes it natively? Would a direct Redis client like predis or phpredis better serve non-Laravel use cases? Is there a documented use case for external consumption of this subtree split?
Stack fit is exclusively for Laravel 13.0+ projects using PHP 8.3+, as the package is a core component of the framework itself. No migration path exists for non-Laravel systems—projects outside Laravel should use dedicated Redis clients instead of this package. Compatibility is constrained to Laravel's version requirements (e.g., PHP 8.3+), and attempting to integrate it into non-Laravel stacks would require manually resolving all illuminate dependencies, creating unnecessary complexity. Sequencing should prioritize leveraging Laravel's built-in Redis integration during framework setup; manual installation of this package is redundant and discouraged.
Maintenance is fully handled by the Laravel core team, with updates aligned to Laravel releases. Standalone usage would inherit no additional maintenance effort but could face unaddressed issues due to lack of testing. Support relies entirely on Laravel's official channels (docs, community forums), with no dedicated support for standalone deployments. Scaling is unaffected by this package itself (as it’s a client wrapper), but depends on Redis server configuration and application design. Failure modes mirror Laravel’s standard Redis integration (e.g., connection timeouts, serialization errors), with no unique risks beyond standard Redis client behavior. Ramp-up requires familiarity with Laravel’s service container and Redis facade—zero learning curve for Laravel developers, but significant overhead for non-Laravel teams due to the need to understand Laravel-specific abstractions.
How can I help you explore Laravel packages today?