clue/block-react
Lightweight bridge to run ReactPHP’s event loop in a blocking way. Lets you wait for promises and async operations from synchronous PHP code, ideal for CLI tools and scripts that need occasional async I/O without restructuring your whole app.
Architecture fit: The package is designed to bridge ReactPHP's event-driven components into blocking environments, making it suitable for CLI scripts or legacy systems. However, Laravel's primary use case is synchronous web applications, where this package creates misalignment. It could only be relevant for isolated CLI tasks requiring ReactPHP components, but Laravel's native async solutions (queues, Horizon) are better suited for most scenarios.
Integration feasibility: Possible for specific CLI use cases but requires careful isolation from web request handling. Integration would involve wrapping ReactPHP components with this package, but conflicts may arise if Laravel's built-in event loop (e.g., via symfony/process or Horizon) interacts with it.
Technical risk: High. The package has not been updated since 2021, risking compatibility with modern ReactPHP versions and PHP
How can I help you explore Laravel packages today?