Google Cloud Tasks Queue Driver
"This package allows you to use Google Cloud Tasks as the queue driver in your Laravel application.
Using Cloud Tasks as a Laravel queue driver is fundamentally different from other drivers like Redis. With Redis or similar drivers, a worker listens for jobs via
queue:workorqueue:listen. With Cloud Tasks, jobs are scheduled and dispatched via HTTP requests to your app. There’s no need to runqueue:workorqueue:listen."