This document discusses making PHP applications more reactive and asynchronous using ReactPHP principles. It covers:
1. The benefits of using a reactive programming approach with ReactPHP including increased performance from non-blocking I/O.
2. How to build a reactive Symfony application using ReactPHP by splitting the application into asynchronous framework, server, and domain layers.
3. The Symfony Async Kernel and ReactPHP Symfony server packages that facilitate building reactive Symfony applications on ReactPHP.
4. Benchmarks showing the ReactPHP approach outperforming traditional PHP and PHP-PM implementations for concurrent requests.