Perform load testing on a specified URL with a customizable number of concurrent connections using this Laravel Artisan command. It measures response times, HTTP status codes, and memory usage for each connection and displays the results in a clean table format. GuzzleHttp is used for asynchronous HTTP requests, ensuring efficient testing and minimal resource consumption.
php artisan load-test {url} {connections?}
`url`: Optional URL to test;
`connections`: Number of concurrent connections (default: 10)
Ideal for assessing the performance and scalability of your Laravel application.